You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
861 B
40 lines
861 B
|
3 years ago
|
import { DEFAULT_LAYOUT } from '../base';
|
||
|
|
import { AppRouteRecordRaw } from '../types';
|
||
|
|
|
||
|
|
const DASHBOARD: AppRouteRecordRaw = {
|
||
|
|
path: '/dashboard',
|
||
|
|
name: 'dashboard',
|
||
|
|
component: DEFAULT_LAYOUT,
|
||
|
|
meta: {
|
||
|
|
locale: 'menu.dashboard',
|
||
|
|
requiresAuth: true,
|
||
|
|
icon: 'icon-dashboard',
|
||
|
|
order: 0,
|
||
|
|
},
|
||
|
|
children: [
|
||
|
|
{
|
||
|
|
path: 'workplace',
|
||
|
|
name: 'Workplace',
|
||
|
|
component: () => import('@/views/dashboard/workplace/index.vue'),
|
||
|
|
meta: {
|
||
|
|
locale: 'menu.dashboard.workplace',
|
||
|
|
requiresAuth: true,
|
||
|
|
roles: ['*'],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
|
||
|
|
{
|
||
|
|
path: 'monitor',
|
||
|
|
name: 'Monitor',
|
||
|
|
component: () => import('@/views/dashboard/monitor/index.vue'),
|
||
|
|
meta: {
|
||
|
|
locale: 'menu.dashboard.monitor',
|
||
|
|
requiresAuth: true,
|
||
|
|
roles: ['admin'],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
],
|
||
|
|
};
|
||
|
|
|
||
|
|
export default DASHBOARD;
|