red-meadow
red-meadow
The latest Mongol doesn't work as it is, you have to manually add Atmosphere and npm `jquery` packages. Steps to reproduce: 1. `meteor create app --bare` 2. `meteor add msavin:[email protected]`...
Fixes #49 (partially) Fixes #52 For now, `meteor` properties marked as `$lazy` are not really lazy, because the functions are executed at least once in order to fill `vm.$data.$meteor.data` with...
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...
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...
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...
### Expected behavior Hi! Is it possible to pinch/rotate immediately after dragging without lifting the finger? This is how Google Maps work, for example: you pan, then add the second...
Is it possible to process files inside a Meteor package with `vite:bundler`? I have an app with several sub-apps, they are located in `/packages` and they use different front-ends: Vue...
This code doesn't work: ```javascript if (Meteor.isServer) { import { xxx } from 'yyy' console.log(xxx) } ``` It would be nice to have this feature. I got around this problem...
First of all, thank you very much for both Vue 2 and Vue 3 integrations! The current approach with `Tracker.autorun(() => { ... cursor.fetch() ... })` causes unnecessary invalidation of...