1
0
mirror of https://github.com/FatttSnake/Pinnacle-OA.git synced 2026-04-05 23:11:24 +08:00

Redesign the page of NoticeView.vue

This commit is contained in:
cccccyb
2023-05-17 03:47:51 +08:00
parent 739971d14b
commit 5afd8ff4e3
11 changed files with 341 additions and 163 deletions

View File

@@ -21,6 +21,8 @@
</template>
<script lang="ts">
import { useNoticeStore } from '@/store/notice'
const noticeStore = useNoticeStore()
export default {
name: 'NoticeView',
data() {
@@ -31,7 +33,9 @@ export default {
console.log(key, keyPath)
}
},
mounted() {}
mounted() {
noticeStore.selectEnableNoticeType()
}
}
</script>