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

View File

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