-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathindex.ts
46 lines (41 loc) · 933 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import Vue from 'vue'
import VueRouter, { RouteConfig } from 'vue-router'
import Grid from '../views/Grid.vue'
import Settings from '../views/Settings.vue'
import Room from '../views/Room.vue'
import Shares from '../components/Shares.vue'
Vue.use(VueRouter)
const routes: Array<RouteConfig> = [
{
path: '/',
name: 'Shares',
component: Shares
},
{
path: '/grid',
name: 'Grid',
component: Grid
},
{
path: '/settings',
name: 'Settings',
component: Settings
},
{
path: '/room',
name: 'Room',
component: Room
},
{
path: '/about',
name: 'About',
// route level code-splitting
// this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
}
]
const router = new VueRouter({
routes
})
export default router