Skip to content
Snippets Groups Projects
Commit 027380c0 authored by syuilo's avatar syuilo
Browse files

fix bug

parent a73a7877
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ export default defineComponent({
type: String,
required: true,
},
value: {
modelValue: {
type: String,
},
},
......@@ -116,7 +116,7 @@ export default defineComponent({
}
},
callback(response?: string) {
this.$emit('update:value', typeof response == 'string' ? response : null);
this.$emit('update:modelValue', typeof response == 'string' ? response : null);
},
},
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment