Nathan
Nathan
This is not strictly a Vue 3 issue. I experience the same issue in Vue 2. That is, setting a new object to a `@VueStore` class property does not trigger...
Vue 2.6.12 I think this is related: The watcher syntax `"on:someProperty"() {...}` does not trigger when a property (object or primitive) of a `@VueStore` class is set. `Vue.set(this, 'theProperty', newObj)`...
The issues I reported above (properties not reacting when set) may have been addressed by commit 0233eccd1a1769d6f6bb12acd6b86bc8ff90e1d3. Pulling the latest of the `DFStudio:direct-injection` branch (and using `yarn link` locally) seems...
Looking at your `index.ts`, not sure if it's possible to augment `makeOptions()` to wire up a `created()` hook for Vue to call on instantiation. If not, here's a suggestion from...
Hi, thanks for your reply. Still experimenting with your lib and really liking its direction. I feel that this issue #26 & issue #14 (object replacement reactivity) are stumbling blocks...
I can confirm that PR #27 fixes this issue, as well as issue #14.
It would be very helpful to have a `created()` hook method in `@VueStore` classes: - The constructor is not appropriate in some cases (as mentioned above) - Using `created()` has...
I am having this exact (mis)behavior with: * FineUploader 5.14.3 (same as above) * Chrome 58.0.3029.110 (64-bit) * macOS Sierra 10.12.5 Fantastic library. Any help is most appreciated, thanks. **Edit:**...
This seems to be the problem: Both `dnd.js` and `fine-uploader.core.js` start by defining `var qq = function(element) { ...`. It seems to work for me by removing this block from...