We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When following the instructions in the tutorial, step 2 (checked w/ the sample sources) never updates the view from the DB. The problem seems to be this error in console: TypeError: this._watchers is undefined, being thrown from from https://github.com/meteor-vue/vue-meteor-tracker/blob/64b736ef41d9ebc0958533d796fd6bcffaee380a/dist/vue-meteor-tracker.esm.js#L1972
TypeError: this._watchers is undefined
Looking back, this appears to be a bug even with the meteor create --vue template.
meteor create --vue
The text was updated successfully, but these errors were encountered:
experiencing the same problem
Sorry, something went wrong.
Same for me. Tutorial seems to be outdated. BTW can't understand why tasks() method is outside of methods :
tasks()
methods
methods: {}, meteor: { tasks() { return TasksCollection.find({}).fetch(); } }
Edit. Task component missing parentheses. So it works with v-for="task in tasks()" and :
Task
v-for="task in tasks()"
methods: { tasks() { return TasksCollection.find({}); } }
No branches or pull requests
When following the instructions in the tutorial, step 2 (checked w/ the sample sources) never updates the view from the DB.
The problem seems to be this error in console:
TypeError: this._watchers is undefined
, being thrown from from https://github.com/meteor-vue/vue-meteor-tracker/blob/64b736ef41d9ebc0958533d796fd6bcffaee380a/dist/vue-meteor-tracker.esm.js#L1972Looking back, this appears to be a bug even with the
meteor create --vue
template.The text was updated successfully, but these errors were encountered: