diff --git a/src/components/MyComponents/Upload/index.vue b/src/components/MyComponents/Upload/index.vue index a1ccd6d..d686c76 100644 --- a/src/components/MyComponents/Upload/index.vue +++ b/src/components/MyComponents/Upload/index.vue @@ -91,7 +91,7 @@ const actionUrl = computed(() => { } }); -const emits = defineEmits(["update:modelValue", "handleChange"]); +const emits = defineEmits(["update:modelValue"]); //čŽ·å–åŽįž€ const getSuffix = (fileName) => { @@ -170,7 +170,6 @@ const handlerSuccess = (res, file) => { arr.push({url:res.data,name:file.name}); } emits("update:modelValue", arr); - emits("handleChange", props.modelValue); }; const handleExceed = (files, fileList) => {