This commit is contained in:
Teo
2025-08-15 03:09:20 +08:00
parent 70d829af6c
commit 26386882f0
8 changed files with 96 additions and 93 deletions

View File

@ -15,6 +15,7 @@ export const useNoticeStore = defineStore('notice', () => {
});
const addNotice = (notice: NoticeItem) => {
console.log('🚀 ~ addNotice ~ notice:', notice);
state.notices.push(notice);
};