feat: router

This commit is contained in:
xingyu4j
2025-05-09 14:40:23 +08:00
parent 6df5bd0060
commit 22a69be371
3 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,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;