This commit is contained in:
Viet An
2026-07-03 10:22:08 +07:00
parent 4404c4654b
commit b06907097c
11 changed files with 107 additions and 111 deletions

View File

@@ -14,7 +14,7 @@
ref="file-input"
type="file"
:id="$id()"
:multiple="multiple ?? true"
:multiple="multiple"
name="resume"
@change="doChange"
/>
@@ -48,7 +48,10 @@ const props = defineProps({
type: Array,
convert: String,
quality: Number,
multiple: Boolean,
multiple: {
type: Boolean,
default: true,
},
});
const emit = defineEmits(["files"]);