diff --git a/src/model/Model.ts b/src/model/Model.ts index 567490b..f400b8a 100644 --- a/src/model/Model.ts +++ b/src/model/Model.ts @@ -61,6 +61,10 @@ export class Model { this.$boot() this.$fill(attributes, options) + + // Prevent `_store` from becoming cyclic object value and causing + // v-bind side-effects by negating enumerability. + Object.defineProperty(this, '_store', { enumerable: false, writable: true }) } /**