vue-class-store icon indicating copy to clipboard operation
vue-class-store copied to clipboard

Universal Vue stores you write once and use anywhere

Results 28 vue-class-store issues
Sort by recently updated
recently updated
newest added

Hey, not sure if this is the right place to ask this, please let me know if there is a better place for this. In our application we also store...

This implements #29, #30, and #31. I'll update this branch as those issues are discussed

As it is in #27 the `created` lifecycle hook isn't called. That's because that has to be present directly on the options object, and I don't explicitly add support for...

I managed to implement directly injecting Vue into the constructed instance, which fixes #26. I also added unit tests for it, which should improve reliability in the future. This implements...

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.12.2 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@​ChALkeR). Fix boolean schemas with strictKeywords...

dependencies

```json "vue": "^2.6.11", "vue-class-store": "^2.0.5", ``` Experimenting with `vue-class-store` as a replacement for Vuex and loving it so far. However... The following example does not work as expected. Setting local...

It seems like object-nested values are not considered reactive. Wondering if this is a specific choice (if so, what're the suggested workarounds). Class properties work fine, but some of my...

vue-3

## Background Currently, defining a watcher with either the `deep` or `immediate` flags requires a watch property with an object value that specifies the handler and flags. This is awkward...

## Background One of the trickiest pitfalls with Vue reactivity is the fact that adding reactivity involves wrapping an object. The original object isn't reactive, only the wrapper created with...