重构优化框架
这是一个大版本的更新 现在,框架更加稳定
This commit is contained in:
30
Yi.Vue3.x/src/router/index.ts
Normal file
30
Yi.Vue3.x/src/router/index.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
import { createRouter, createWebHistory, RouteRecordRaw } from 'vue-router'
|
||||
|
||||
const routes: Array<RouteRecordRaw> = [
|
||||
{
|
||||
path: '/',
|
||||
name: 'Layout',
|
||||
component: () => import(/* webpackChunkName: "about" */ '../components/Layout.vue'),
|
||||
redirect: "/index",
|
||||
children: [{
|
||||
path: "/index",
|
||||
name: "Index",
|
||||
component: () => import(/* webpackChunkName: "about" */ '../views/Index.vue')
|
||||
}]
|
||||
},
|
||||
{
|
||||
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 = createRouter({
|
||||
history: createWebHistory(process.env.BASE_URL),
|
||||
routes
|
||||
})
|
||||
|
||||
export default router
|
||||
Reference in New Issue
Block a user