daofu-gov-pc/src/router/modules/work-trends.js

25 lines
582 B
JavaScript
Raw Normal View History

2024-01-23 17:52:02 +08:00
const Layout = () => import('@/layout/index.vue')
export default {
path: '/trends',
component: Layout,
name: 'trends',
2024-01-26 09:02:58 +08:00
redirect: '/trends/t-index',
2024-01-23 17:52:02 +08:00
meta: {
auth: "trends",
title: '工作动态',
2024-01-30 10:57:03 +08:00
icon: 'icon-trends',
2024-01-23 17:52:02 +08:00
},
children: [
{
2024-01-26 09:02:58 +08:00
path: 't-index',
name: 't-index',
2024-01-23 17:52:02 +08:00
component: () => import('@/views/work-trends/index.vue'),
meta: {
2024-01-26 09:02:58 +08:00
auth: "trends.index",
2024-01-23 17:52:02 +08:00
title: '工作动态',
sidebar: false
}
},
]
}