This commit is contained in:
yixu
2025-09-15 11:45:50 +08:00
parent 436d9323e7
commit 450c3b1ccc
4 changed files with 207 additions and 50 deletions

View File

@@ -11,12 +11,6 @@ import { Storage, generateQR } from "../libs/utils"
const props = defineProps({
show: false
})
watch(() => props.show, async (newVal) => {
if (!newVal) {
return
}
fetchImages();
},{immediate:true})
const emit = defineEmits(['go-photo-square', 'update:show']);
const router = useRouter();