bugfix: props类型

This commit is contained in:
2026-04-29 13:11:36 +08:00
parent 59a7c169ad
commit 7cf37e2da6

View File

@@ -85,11 +85,11 @@ import ImageClip from "./image-clip.vue"
const props = defineProps({
type: {
type: String,
default: () => false
default: ""
},
isProduct: {
type: Boolean,
default: () => false
default: false
}
})