解决会话列表持久化后,聊天页面卡死的问题

This commit is contained in:
wangyifeng 2025-03-11 13:58:25 +08:00
parent 8b61369006
commit f2abedd88e

View File

@ -7,7 +7,7 @@ import { createGlobalState, useStorage } from '@vueuse/core'
import { uniStorage } from '@/utils/uniStorage.js' import { uniStorage } from '@/utils/uniStorage.js'
export const useDialogueListStore = createGlobalState(() => { export const useDialogueListStore = createGlobalState(() => {
const dialogueList = useStorage('dialogueList', [], uniStorage) const dialogueList = ref([])
const zpagingRef = ref() const zpagingRef = ref()
const virtualList = ref([]) const virtualList = ref([])