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
I use a few before.find and before.findOne hooks from https://github.com/matb33/meteor-collection-hooks. And they only work outside of the vue meteor tracker. E.g.
If I have hook:
Projects.before.findOne(function (userId, selector, options) { selector.removed = null });
This will work:
methods: { findProject () { return Projects.findOne('xyz') } }
meteor: { project () { return Projects.findOne({_id: 'xyz'}); } }
This will not work:
meteor: { project () { return Projects.findOne('xyz'); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I use a few before.find and before.findOne hooks from https://github.com/matb33/meteor-collection-hooks. And they only work outside of the vue meteor tracker. E.g.
If I have hook:
This will work:
This will work:
This will not work:
The text was updated successfully, but these errors were encountered: