Files
jdt-mer/src/views/dashboard/route.js
2022-08-07 22:25:28 +08:00

24 lines
404 B
JavaScript

const Layout = () => import('@/layout/index.vue')
export default {
name: 'Dashboard',
path: '/',
component: Layout,
redirect: '/home',
meta: {
title: 'Dashboard',
icon: 'mdi:chart-bar',
},
children: [
{
name: 'Home',
path: 'home',
component: () => import('./index.vue'),
meta: {
title: '首页',
icon: 'mdi:home',
},
},
],
}