博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【vue】路由配置
阅读量:5277 次
发布时间:2019-06-14

本文共 591 字,大约阅读时间需要 1 分钟。

一般组件我们会有全屏组件,或是在页面的某个部分显示组件,所以路由的第一层一般是全屏显示的,而在/目录下的组件为页面的某个部分显示的,通常需求是这样的,登录是全屏显示的,而普通页面是在页面的某个部分进行切换的。

export default new Router({  mode: 'history',  routes: [    {      path: '/',      name: 'Home',      component: () => import('@/components/Home.vue'),      children: [        {          path: 'recommend',          name: 'Recommend',          component: () => import('@/components/Recommend.vue'),        }      ]    },    {      path: '/about',      name: 'About',      component: () => import('@/components/About.vue')    }  ]})

 

转载于:https://www.cnblogs.com/wuxianqiang/p/10588562.html

你可能感兴趣的文章