feat: 新增 ele infra 我的站内信

This commit is contained in:
puhui999
2025-05-14 16:57:00 +08:00
parent b5de0e8307
commit 4e1d842e7f
4 changed files with 287 additions and 49 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;