Files
wireguard-dashboard/web/src/views/workbench/route.js
2024-08-22 15:37:21 +08:00

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,
},
},
],
}