fix: ts type eroor

This commit is contained in:
xingyu
2023-02-01 15:53:55 +08:00
parent 5fe0106155
commit 19fe7ea8f9
5 changed files with 8 additions and 13 deletions

View File

@@ -5,7 +5,7 @@ import * as NotifyMessageApi from '@/api/system/notify/message'
const { push } = useRouter()
const activeName = ref('notice')
const unreadCount = ref(0) // 未读消息数量
const list = ref([]) // 消息列表
const list = ref<any[]>([]) // 消息列表
// 获得消息列表
const getList = async () => {