fix message ui

This commit is contained in:
jxxghp
2024-03-16 16:47:41 +08:00
parent 823d2a816e
commit fed92f3853
6 changed files with 151 additions and 27 deletions
+2 -2
View File
@@ -25,8 +25,8 @@ const isDownloading = ref(props.info?.state === 'downloading')
// 监听props.info?.state的变化
watch(() => props.info?.state, (newValue) => {
isDownloading.value = newValue === 'downloading';
});
isDownloading.value = newValue === 'downloading'
})
// 图片是否加载完成
const imageLoaded = ref(false)