Files
emsfront/src/router/ems.js

20 lines
342 B
JavaScript
Raw Normal View History

import Layout from "@/layout/index.vue";
const ems = [
{
path: '/zddt',
component: Layout,
redirect: 'zddt',
children: [
{
path: '',
component: () => import('@/views/ems/zddt/index'),
name: 'zddt',
meta: { title: '站点地图', icon: 'guide' }
}
]
}
]
export default ems