26 lines
608 B
JavaScript
26 lines
608 B
JavaScript
|
|
const Layout = () => import('@/layout/index.vue')
|
||
|
|
|
||
|
|
export default {
|
||
|
|
path: '/trends',
|
||
|
|
component: Layout,
|
||
|
|
name: 'trends',
|
||
|
|
redirect: '/trends/index',
|
||
|
|
meta: {
|
||
|
|
auth: "trends",
|
||
|
|
title: '工作动态',
|
||
|
|
icon: 'point',
|
||
|
|
activeMenu: '/work-trends/index'
|
||
|
|
},
|
||
|
|
children: [
|
||
|
|
{
|
||
|
|
path: 'index',
|
||
|
|
name: 'index',
|
||
|
|
component: () => import('@/views/work-trends/index.vue'),
|
||
|
|
meta: {
|
||
|
|
auth: "home.home",
|
||
|
|
title: '工作动态',
|
||
|
|
sidebar: false
|
||
|
|
}
|
||
|
|
},
|
||
|
|
]
|
||
|
|
}
|