This commit is contained in:
xiaojunnuo
2023-10-27 12:16:20 +08:00
parent e137b6baaa
commit 0cb566d2f3
2 changed files with 6 additions and 6 deletions
@@ -16,7 +16,7 @@ export default {
}
},
emits: ["update:modelValue"],
setup(props, ctx) {
setup(props:any, ctx:any) {
const options = ref<any[]>([]);
async function onCreate() {
@@ -35,7 +35,7 @@ export default {
}
onCreate();
function onChanged(value) {
function onChanged(value:any) {
ctx.emit("update:modelValue", value);
}
return {