fix(Checkbox): dynamic bind group (#6730)

This commit is contained in:
neverland 2020-07-07 18:58:12 +08:00 committed by GitHub
parent bf0f655c72
commit b944c2467b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,6 +30,14 @@ export function ChildrenMixin(parent, options = {}) {
},
},
watch: {
disableBindRelation(val) {
if (!val) {
this.bindRelation();
}
},
},
mounted() {
this.bindRelation();
},