D3.js vs Vue.js examples
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
299 B

7 years ago
import Vue from 'vue'
7 years ago
import VueRouter from 'vue-router'
7 years ago
import Index from 'components/index'
import {routes as demoRoutes} from './demos'
7 years ago
Vue.use(VueRouter)
7 years ago
7 years ago
export default new VueRouter({
7 years ago
routes: [
{
path: '/',
name: 'Menu',
7 years ago
component: Index
}, ... demoRoutes
]
})