vue-meteor-tracker
vue-meteor-tracker copied to clipboard
Use Meteor Tracker reactivity inside Vue components
Recently I decided to switch to using computed properties returning `this.$autorun()` instead of `meteor` property, because of this #49 issue. But encountered another issue. Computed property returning `this.$autorun()` becomes reactive...
***Step 1:*** Call a subscription and closed the subscription after my work. ***Step 2:*** Call other subscription. Then call step2 subscription and with step1 subscription. It's not dependancy of the...
Actually one publication may have more than one subscriptions (ie: different arguments), but under current design we cannot do that.
Allows a different DDP connection to make subscription the same way template level subs do
This may not be a typical use case, but I'm running unit tests for a Meteor app with Jest and circumventing Meteor's test command. If you were to change this...
Since meteor reactive data are basically computed properties, it would be nice if they could also have setters so that they could be used natively inside `v-model`. e.g. It would...
I could not find any example of how to use __cursor.observeChanges__ in a Vue component. ### Reason I have a component encapsulating a interactive data visualization. This visualization is not...
Hey there, I put together a repo with a simple-todos for Vue using Meteor 1.8: https://github.com/MichaelJCole/simple-todo-vue Once the code's complete, I can package it up into the Tutorial. It's almost...
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)...
I was trying to use this code: computed:{ messages(){ let self = this; if(this.$subReady.messages){ console.log(Meteor.user().username + " and " + self.link); return this.$autorun(function() { Meteor.call("setCheckedDuo", {"opponent": self.link, "id": Meteor.userId()}) return...