This commit is contained in:
xiaozhiyong
2023-02-21 16:10:40 +08:00
parent 811bbb789d
commit 0f4299fce3
6 changed files with 768 additions and 307 deletions

View File

@@ -9,6 +9,7 @@
:remote-method="remoteMethod"
@clear="list = []"
:disabled="isDisabled"
@change="change"
>
<el-option
v-for="(item, index) in list"
@@ -74,6 +75,9 @@ export default {
this.list = [];
}
},
change(val) {
this.$emit("change", val);
},
},
};
</script>