Files
cunkebao_v3/Backend/src/router/task.js
2025-03-12 12:48:13 +08:00

20 lines
454 B
JavaScript

export default {
path: '/task',
name: 'task',
meta: {
title: '任务队列',
needLogin: true,
},
redirect: '/task/index',
component: () => import('@/views/task/layout'),
children: [
{
path: '/task/index',
meta: {
title: '任务队列',
needLogin: true,
},
component: () => import('@/views/task/index'),
},
],
}