diff options
| author | Hakaba Hitoyo <hakabahitoyo@yahoo.co.jp> | 2019-01-07 17:26:47 +0000 |
|---|---|---|
| committer | Shpuld Shpludson <shp@cock.li> | 2019-01-07 17:26:47 +0000 |
| commit | a60fc390a036078a857693193cfd18b9ee42954b (patch) | |
| tree | f243c98009130227fa06cfe41095a14cb985c39b /src/boot/routes.js | |
| parent | 2184334ad919fdcf167ac2f1657d508481ec431b (diff) | |
Add instance information page for mobile
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 e892839c..05513794 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 About from 'components/about/about.vue' export default (store) => { return [ @@ -46,6 +47,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: 'about', path: '/about', component: About }, { name: 'user-profile', path: '/(users/)?:name', component: UserProfile } ] } |
