red-meadow

Results 10 comments of red-meadow

Hello! I have a slightly different question: what is a proper way to transform a document from one child class to another (*not* create a copy)? I tried the solution...

The issue is caused by [this](https://github.com/meteor-vue/vue-meteor-tracker/blob/64b736ef41d9ebc0958533d796fd6bcffaee380a/src/index.js#L193) block of code: ```javascript const autorun = this.$autorun(() => { // Failed subscription will never be ready const ready = handle.ready() set(this.$data.$meteor.subs, key, ready)...

Thanks! I saw that commit though I didn't pay attention to what issues it closed. Have you tested the new code and encountered any issues with watchers or computed properties?...

How many times exactly? Normally, it is triggered 2 times - still too many. Check this issue #49. And regarding `$startMeteor()`, it has effect only if you deactivates Meteor with...

> it still calls the $subscription at least twice Right, that was reported in #49. The source of an issue is how integration with Tracker is implemented, you can't avoid...

Do you mean that limit and skip values are dynamic? I'm not familiar with that part of the code but as far as I remember arguments for `$subscribe` are passed...

I tried to reproduce your issue and also encountered a strange behavior. I used `` element with `v-model` to manipulate `this.skip` and `this.limit` values but forgot to convert them to...

Actually this strange behavior in case of invalid arguments passed to `subscribe` is caused by another issue #22 .

@vblagomir @wildhart Hello, guys! I decided to look under the hood and try to fix this. It turned out that we have two separated issues here: when `$lazy` is true...

I tired to use dynamic imports, they worked fine in development but failed on a build step. Vite treated them as a part of a client code, created chunks and...