diff options
| author | Henry Jameson <me@hjkos.com> | 2018-08-27 22:22:25 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2018-08-27 22:22:25 +0300 |
| commit | eacbd9b5009a3646854b59e9983753fd288ea1c4 (patch) | |
| tree | 69ebca9d36a4e00fb20894383c7cd57f9c90ccc1 /src/components/user_settings/user_settings.js | |
| parent | b4cc1e020bf62cfebbe0d68efa12a980d2b2c27a (diff) | |
Separated tab-switcher into a reusable component. This depends on JSX addition
Diffstat (limited to 'src/components/user_settings/user_settings.js')
| -rw-r--r-- | src/components/user_settings/user_settings.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/user_settings/user_settings.js b/src/components/user_settings/user_settings.js index f046885e..0b13a668 100644 --- a/src/components/user_settings/user_settings.js +++ b/src/components/user_settings/user_settings.js @@ -1,3 +1,4 @@ +import TabSwitcher from '../tab_switcher/tab_switcher.jsx' import StyleSwitcher from '../style_switcher/style_switcher.vue' const UserSettings = { @@ -23,7 +24,8 @@ const UserSettings = { } }, components: { - StyleSwitcher + StyleSwitcher, + TabSwitcher }, computed: { user () { |
