Files
jdt-mer/src/views/workbench/route.js

21 lines
374 B
JavaScript

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