1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| import type { RouteRecordRaw } from 'vue-router';
|
| const routes: RouteRecordRaw[] = [
| {
| path: '/system/notify-message',
| component: () => import('#/views/system/notify/my/index.vue'),
| name: 'MyNotifyMessage',
| meta: {
| title: '我的站内信',
| icon: 'ant-design:message-filled',
| hideInMenu: true,
| },
| },
| ];
|
| export default routes;
|
|