You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
414 B
19 lines
414 B
import Layout from '@/layout'
|
|
|
|
const codemenu = [
|
|
{
|
|
path: '/message',
|
|
component: Layout,
|
|
redirect: '/message',
|
|
meta: {
|
|
title: '消息管理'
|
|
},
|
|
children: [{
|
|
path: '/message/unreadmessage',
|
|
component: () => import('@/views/message/unreadmessage.vue'),
|
|
name: 'UnreadMessage',
|
|
meta: { title: '消息管理', noCache: true }
|
|
}]
|
|
}
|
|
]
|
|
export default codemenu
|
|
|