vuex-class-component icon indicating copy to clipboard operation
vuex-class-component copied to clipboard

A Type Safe Vuex Module or Store Using ES6 Classes and ES7 Decorators written in TypeScript.

Results 47 vuex-class-component issues
Sort by recently updated
recently updated
newest added

If the `$watch` is not static, then it is part of the object constructor in TypeScript and not part of the object prototype, so it can't be accessed from [`createLocalWatchers`](https://github.com/michaelolof/vuex-class-component/blob/master/src/proxy.ts#L222).

Fix #54 This is exactly the same as #79 but rebased with the last fix from #83. Some of this have been deprecated, since I improved getters. I have been...

Bumps [elliptic](https://github.com/indutny/elliptic) from 6.4.1 to 6.5.4. Commits 43ac7f2 6.5.4 f4bc72b package: bump deps 441b742 ec: validate that a point before deriving keys e71b2d9 lib: relint using eslint 8421a01 build(deps): bump...

dependencies

I really like the idea of putting a proxy over the stores (vxm) and abstracting all the mutations and mapX decorators. I found your package while doing research on how...

Bumps [js-yaml](https://github.com/nodeca/js-yaml) from 3.13.0 to 3.14.0. Changelog Sourced from js-yaml's changelog. [3.14.0] - 2020-05-22 Changed Support safe/loadAll(input, options) variant of call. CI: drop outdated nodejs versions. Dev deps bump. Fixed...

dependencies

Bumps [acorn](https://github.com/acornjs/acorn) from 5.7.3 to 5.7.4. Commits 6370e90 Mark version 5.7.4 fbc15b1 More rigorously check surrogate pairs in regexp validator See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=acorn&package-manager=npm_and_yarn&previous-version=5.7.3&new-version=5.7.4)](https://help.github.com/articles/configuring-automated-security-fixes) Dependabot...

dependencies

Bumps [mixin-deep](https://github.com/jonschlinkert/mixin-deep) from 1.3.1 to 1.3.2. Commits - [`754f0c2`](https://github.com/jonschlinkert/mixin-deep/commit/754f0c20e1bc13ea5a21a64fbc7d6ba5f7b359b9) 1.3.2 - [`90ee1fa`](https://github.com/jonschlinkert/mixin-deep/commit/90ee1fab375fccfd9b926df718243339b4976d50) ensure keys are valid when mixing in values - See full diff in [compare view](https://github.com/jonschlinkert/mixin-deep/compare/1.3.1...1.3.2) Maintainer changes This...

dependencies

A lot of the motivation behind this new proposal is making the Class API feel and work as much as natural classes as possible. ### New Class Declaration API -...

enhancement

Do you think it would be possible to add support for deep mutations to support state with nested fields? I'm sure it won't be an easy task, but it would...

Hello, thanks for this library, it's very useful ! I use the `ProxyWatchers` in my code, but since I create the proxies only once and use an interface to access...