notify.ts
436 Bytes
import Layout from '@/layout/enter.vue'
const notify = {
path: '/',
component: Layout,
name: 'Notify',
children: [{
path: 'notify',
name: 'notify',
component: () => import('@/views/notify/index.vue'),
meta: { title: '公告管理' }
}, {
path: '/notify/edit',
name: 'notifyEdit',
component: () => import('@/views/notify/edit.vue'),
meta: { title: '公告编辑' }
}]
}
export default notify