搜索结果列表页面开发
This commit is contained in:
23
src/router/config/notice.ts
Normal file
23
src/router/config/notice.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import DefaultLayout from '@/layouts/DefaultLayout/index.vue';
|
||||
// import NoticeLayout from '@/layouts/NoticeLayout/index.vue';
|
||||
// import ProxyView from '@/views/UserCenter/proxy.vue';
|
||||
|
||||
export default [
|
||||
{
|
||||
path: '/notice',
|
||||
component: DefaultLayout,
|
||||
children: [
|
||||
{
|
||||
path: '',
|
||||
name: 'notice',
|
||||
// component: ProxyView,
|
||||
component: () => import('@/views/UserCenter/proxy.vue'),
|
||||
meta: {
|
||||
title: '通知中心',
|
||||
reportTitle: '通知',
|
||||
needLogin: true
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
Reference in New Issue
Block a user