daofu-gov-pc/src/router/modules/work-manage.js
2024-01-26 09:02:58 +08:00

26 lines
593 B
JavaScript

const Layout = () => import('@/layout/index.vue')
export default {
path: '/work',
component: Layout,
name: 'work',
redirect: '/work/w-index',
meta: {
auth: "daily",
title: '工作管理',
icon: 'point',
},
children: [
{
path: 'w-index',
name: 'w-index',
component: () => import('@/views/work-manage/index.vue'),
meta: {
auth: "daily",
icon: 'point',
title: '工作管理',
sidebar: false
}
},
]
}