diff options
| author | Hakaba Hitoyo <hakabahitoyo@yahoo.co.jp> | 2019-01-16 02:33:08 +0000 |
|---|---|---|
| committer | HJ <spam@hjkos.com> | 2019-01-16 02:33:08 +0000 |
| commit | 05ead45fb72a3971b93ee544bba277aa167d69c5 (patch) | |
| tree | d008e723fa33597452caa7d27de4e330555b378b /src/boot/routes.js | |
| parent | 502a76be0aa54edd23b4db58b3af90c57f0771cf (diff) | |
Show who to follow in the mobile view
Diffstat (limited to 'src/boot/routes.js')
| -rw-r--r-- | src/boot/routes.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/boot/routes.js b/src/boot/routes.js index 05513794..9dba532a 100644 --- a/src/boot/routes.js +++ b/src/boot/routes.js @@ -16,6 +16,7 @@ import Notifications from 'components/notifications/notifications.vue' import UserPanel from 'components/user_panel/user_panel.vue' import LoginForm from 'components/login_form/login_form.vue' import ChatPanel from 'components/chat_panel/chat_panel.vue' +import WhoToFollow from 'components/who_to_follow/who_to_follow.vue' import About from 'components/about/about.vue' export default (store) => { @@ -47,6 +48,7 @@ export default (store) => { { name: 'chat', path: '/chat', component: ChatPanel, props: () => ({ floating: false }) }, { name: 'oauth-callback', path: '/oauth-callback', component: OAuthCallback, props: (route) => ({ code: route.query.code }) }, { name: 'user-search', path: '/user-search', component: UserSearch, props: (route) => ({ query: route.query.query }) }, + { name: 'who-to-follow', path: '/who-to-follow', component: WhoToFollow }, { name: 'about', path: '/about', component: About }, { name: 'user-profile', path: '/(users/)?:name', component: UserProfile } ] |
