diff --git a/src/mixins/relation.js b/src/mixins/relation.js index bcf9cb5dd..f6d503616 100644 --- a/src/mixins/relation.js +++ b/src/mixins/relation.js @@ -30,6 +30,14 @@ export function ChildrenMixin(parent, options = {}) { }, }, + watch: { + disableBindRelation(val) { + if (!val) { + this.bindRelation(); + } + }, + }, + mounted() { this.bindRelation(); },