mirror of
https://github.com/wanglin2/mind-map.git
synced 2026-02-21 18:37:43 +08:00
27 lines
383 B
JavaScript
27 lines
383 B
JavaScript
import Vue from 'vue'
|
|
import VueRouter from 'vue-router'
|
|
|
|
Vue.use(VueRouter)
|
|
|
|
const routes = [
|
|
{
|
|
path: '/',
|
|
name: 'Edit',
|
|
component: () => import(`./pages/Edit/Index.vue`)
|
|
},
|
|
{
|
|
path: '/index',
|
|
redirect: '/'
|
|
},
|
|
{
|
|
path: '/doc/zh',
|
|
component: () => import(`./pages/Doc.vue`)
|
|
}
|
|
]
|
|
|
|
const router = new VueRouter({
|
|
routes
|
|
})
|
|
|
|
export default router
|