28 lines
679 B
JavaScript
28 lines
679 B
JavaScript
|
|
import { DEFAULT_LAYOUT } from "../base"
|
||
|
|
|
||
|
|
const DASHBOARD = {
|
||
|
|
path: "/dashboard",
|
||
|
|
name: "dashboard",
|
||
|
|
component: DEFAULT_LAYOUT, // () => import("@/layout/default-layout.vue")
|
||
|
|
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: ["*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
]
|
||
|
|
}
|
||
|
|
|
||
|
|
export default DASHBOARD
|