From f894534e248dafa07eb394772beed684636097a5 Mon Sep 17 00:00:00 2001 From: cccccyb <995134776@qq.com> Date: Sat, 6 May 2023 04:16:47 +0800 Subject: [PATCH] Added notice management --- ui/src/router/index.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/ui/src/router/index.ts b/ui/src/router/index.ts index f434aa1..98d63f6 100644 --- a/ui/src/router/index.ts +++ b/ui/src/router/index.ts @@ -147,6 +147,17 @@ const router = createRouter({ requiresScrollbar: false, requiresPadding: true } + }, + { + path: '/notice', + component: async () => await import('@/pages/notice/NoticeHome.vue'), + name: 'noticeHome', + meta: { + title: '公告管理', + icon: IconPinnacleNotice, + requiresScrollbar: false, + requiresPadding: true + } } ] },