mirror of
https://github.com/FatttSnake/Pinnacle-OA.git
synced 2026-04-05 15:01:23 +08:00
22 lines
395 B
Vue
22 lines
395 B
Vue
<template>
|
|
<notice-view-table />
|
|
</template>
|
|
<script lang="ts">
|
|
import { useNoticeStore } from '@/store/notice'
|
|
const noticeStore = useNoticeStore()
|
|
export default {
|
|
data() {
|
|
return {}
|
|
},
|
|
methods: {},
|
|
mounted() {
|
|
noticeStore.selectAllNoticeByUserId(0)
|
|
},
|
|
unmounted() {
|
|
console.log('toRead:unmounted')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped></style>
|