feat: 消息通知
This commit is contained in:
@@ -2,13 +2,20 @@ import { defineStore } from 'pinia'
|
||||
import { ref, computed } from 'vue'
|
||||
export const useGlobalStore = defineStore('global', () => {
|
||||
const state = ref({
|
||||
loading: false
|
||||
loading: false,
|
||||
unReadMessageCount: 0
|
||||
})
|
||||
|
||||
const setLoading = (v: boolean) => { state.value.loading = v }
|
||||
const setLoading = (v: boolean) => {
|
||||
state.value.loading = v
|
||||
}
|
||||
|
||||
const setUnredCount = (number: number) => {
|
||||
state.value.unReadMessageCount = number
|
||||
}
|
||||
return {
|
||||
state,
|
||||
setLoading,
|
||||
setUnredCount
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user