We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b5955b9 + 73ede67 commit e4c3dbaCopy full SHA for e4c3dba
README.md
@@ -149,6 +149,9 @@ new Vue({
149
id: this.selectedThreadId
150
};
151
},
152
+ // Optionally we can watch the parameters for changes in nested
153
+ // objects using the 'deep' option
154
+ deep: true,
155
//// Meteor Reactivity
156
// This will be refresh each time above params changes from Vue
157
// Then it calls Tracker.autorun() to refresh the result
src/vue-plugin.js
@@ -82,6 +82,7 @@ export default {
82
autorun(params);
83
}, {
84
immediate: true,
85
+ deep: !!options.deep
86
});
87
} else {
88
autorun();
0 commit comments