mirror of https://gitee.com/godoos/godoos.git
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.
26 lines
383 B
26 lines
383 B
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
|
|
|