Closed mizzao closed 6 years ago
@Akryum, is this an actual issue or did I do something wrong?
(Just to shamelessly plug an alternative here, which is to use Tracker
ported to Vue reactivity, as described here.)
@mitar I trust all your products, but does that package do everything that this one does, or something slightly different?
Why don't you publish it on NPM instead of requiring someone to check out a submodule?
It does it in a different way (requires Vue fork). To my understanding it provides the same features, but with different approach.
Why don't you publish it on NPM instead of requiring someone to check out a submodule?
After updating from v1.2.3, I am much happier about the cleaner code and reduction of redundant
data
keys. However, there are a couple of Vue modules that are no longer working as before and I tracked them down to havingwatch
andcomputed
values that depend on the keys that were previously listed indata() { return { foo: ... } }
but are now generated bymeteor: { foo: ... }
.All template code that depends on the
meteor
data keys still work fine.Is this a bug or something I'm doing wrong? Happy to create a reproduction but wanted to quickly check if this was an actual issue first.
EDIT: just saw that the
computed
code was added in beta.3. Maybe it needs some tests :)