vue-meteor-tracker
vue-meteor-tracker copied to clipboard
Use Meteor Tracker reactivity inside Vue components
Hello! I use collections/cursors with defined `transform()` function to transform raw documents to class instances. Normally, this function is executed when a document is fetched for the 1st time or...
```js {{!$subReady.posts}} // work fine {{loading}} // don't reactive ---------- data() { return { loading: true }; }, meteor: { $subscribe: { posts: [] }, loading(){ return !this.$subReady.posts; }, ```
(for #16) * import the Tracker dependency instead of relying on global I've only tested this by adding the dependency in `package.json` with the `file://` specifier, working fine for me.
I have a problem where my default values are being overwritten by the meteor method call causing an error `Cannot read property 'profile' of undefined at Proxy.About.vue.__vue_options__.render (About.vue:47)` in the...
I tried setting it to true, and everything still updates as it should. But since it's not the default, I assume it must cause problems in some cases?
Hi, On my first project integrating vue.js with meteor, using akryum package (akryum:[email protected]), I realised today that meteor subscriptions seems not be stopped. Passing a document Id through the vue-router...
I use vue3 and vue-meteor-tracker 3.0.0beta7. When I try to use 'this' in Reactive data, i got undefined. In fact, it works when I use for example 'this.$store...' but not...
Bumps [postcss](https://github.com/postcss/postcss) from 8.4.16 to 8.4.31. Release notes Sourced from postcss's releases. 8.4.31 Fixed \r parsing to fix CVE-2023-44270. 8.4.30 Improved source map performance (by @romainmenke). 8.4.29 Fixed Node#source.offset (by...
``` export default { data() { return { selectedThreadId: 'test', }; }, computed: { testComputed() { return 'testComputed'; }, }, meteor: { $subscribe: { threads: [], }, meteorTestComputed() { //...