This commit is contained in:
xiaoaojiao
2025-09-14 23:33:25 +08:00
2 changed files with 8 additions and 1 deletions

View File

@@ -64,6 +64,13 @@ const fetchImages = async () => {
}
}
watch(() => props.show, async (newVal) => {
if (!newVal) {
return
}
fetchImages();
}, { immediate: true })
// 图片数据
const images = ref([]);