vue-meteor-tracker icon indicating copy to clipboard operation
vue-meteor-tracker copied to clipboard

Use Meteor Tracker reactivity inside Vue components

Results 44 vue-meteor-tracker issues
Sort by recently updated
recently updated
newest added
trafficstars

Using the `$subscribe` function with Vue dynamic arguments doesn't work properly if the publication throws an error. - The previous subscription (which didn't have an error) is not stopped, so...

enhancement

Hi, I am using the latest meteor and meteor-vue-tracker and I am facing an issue in which a meteor property keeps getting called infinitely and slows down the whole project....

If a meteor property relies on any props or other component data or computed properties, it causes an error when used with `$lazy: true`. It seems that the function is...

+ Cannot read property 'push' of null Throwing an exception with a more helpful description when attempting to call `$subscribe` on a destroyed component.

Hello, I have problem with publish and subscribe when run on local it work fine but I deploy on cloud server why it does not working. I don't know why?...

``` export default { computed: { test1 () { console.log('test1') } }, meteor: { $lazy: true, test2 () { console.log('test2') } } } ``` **In the above example:** 1. 'test1'...

Bumps [mixin-deep](https://github.com/jonschlinkert/mixin-deep) from 1.3.1 to 1.3.2. Commits - [`754f0c2`](https://github.com/jonschlinkert/mixin-deep/commit/754f0c20e1bc13ea5a21a64fbc7d6ba5f7b359b9) 1.3.2 - [`90ee1fa`](https://github.com/jonschlinkert/mixin-deep/commit/90ee1fab375fccfd9b926df718243339b4976d50) ensure keys are valid when mixing in values - See full diff in [compare view](https://github.com/jonschlinkert/mixin-deep/compare/1.3.1...1.3.2) Maintainer changes This...

dependencies

Fixes #49 (partially) As described in the issue, meteor properties functions (without `$lazy`) are executed twice during component creation. The reason for this behavior is that a function is first...

```js props: ['subscribeName'], meteor: { $subscribe: { [this.subscribeName](){ return ........; } }, tableData(){ console.log(Posts.find({}).fetch()); }, }, ```

enhancement

Is updated this indication in the readme? Note: if you are using the Meteor akryum:vue package, you don't need to install the plugin. I've follow the link but akryum vue...