25 lines
427 B
JavaScript
25 lines
427 B
JavaScript
const Layout = () => import('@/layout/index.vue')
|
|
|
|
export default {
|
|
name: 'Dashboard',
|
|
path: '/',
|
|
component: Layout,
|
|
redirect: '/workbench',
|
|
meta: {
|
|
title: '工作台',
|
|
order: 0,
|
|
},
|
|
children: [
|
|
{
|
|
name: 'Workbench',
|
|
path: 'workbench',
|
|
component: () => import('./index.vue'),
|
|
meta: {
|
|
title: '工作台',
|
|
icon: 'mdi:home',
|
|
order: 0,
|
|
},
|
|
},
|
|
],
|
|
}
|