提交 43b5bfd4 authored 作者: lihuihui's avatar lihuihui

update

上级 e24226af
export default [
{ path: '/', redirect: '/login' },
/* 测试页面 */
{ path: '/test', name: 'test', component: () => import('../pages/test.vue') },
/* 如果所有页面都没找到 - 指向 */
{ path: '*', component: () => import('@/components/errorPages/404.vue') },
/* 登录页面 */
{ path: '/login', component: () => import('../pages/login/index.vue') },
{ path: '/login',
name: 'login',
component: () => import('../pages/login/index.vue')
},
/* 我的页面 */
{ path: '/my', component: () => import('../pages/my/index.vue') },
{
path: '/my',
name: 'my',
component: () => import('../pages/my/index.vue')
},
/* 首页列表页 */
{ path: '/index', component: () => import('../pages/list/index.vue') },
{
path: '/index',
name: 'index',
component: () => import('../pages/list/index.vue')
},
/* 首页列表页详情 */
{ path: '/details', component: () => import('../pages/list/details.vue') },
{
path: '/details',
name: 'details',
component: () => import('../pages/list/details.vue')
},
/* 直播回放 */
{
path: '/liveBack/:room_id',
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论