no message

Former-commit-id: e81e8cc565dd5a6bfcc82dc96d195173f97ee9b0
Former-commit-id: b24482b830a621e4ea601bad8a5e2346327fd4de
Former-commit-id: 6f67dfb78ba352529970effc9515f84d26a75f85
This commit is contained in:
liyang
2018-06-09 20:35:03 +08:00
parent 23219fd89e
commit 1c5367c980

View File

@@ -86,6 +86,16 @@ const routes = [
{ path: 'index', name: `${pre}index`, component: () => import('@/pages/demo/chart/index/index.vue') }
])('demo-chart-')
},
{
path: '/demo/business',
name: 'demo-business',
meta: { requiresAuth: true },
redirect: { name: 'demo-business-index' },
component: () => import('@/components/core/MainLayout/index.vue'),
children: (pre => [
{ path: 'index', name: `${pre}index`, component: () => import('@/pages/demo/business/index/index.vue') }
])('demo-business-')
},
// 登陆
{
path: '/login',