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

I am creating a new project with Nuxt and I have added your library (thanks for your work by the way ;) ) but there is a problem with the...

When creating internal proxies on submodules, they were generating the namespaced path twice. Eg a module of 'user' with a submodule of 'settings' would generate a namespace path of 'user/user/settings'....

fix to import createProxy in README.md

Hi, In nuxt.js subscribers etc. will work only if you prepend related property with `static`, like `static $subscribe = { ... }`, otherwise `createLocalSubscriber` in `proxy.ts` will return on `if(...

Couldn't find a clear demonstration of how to create a getter which supports params.

I'm trying to add simple dependency injection to our stores, but in order to do this I will need control over their instance creation. Unfortunately this is currently impossible because...

When one uses the strict=false method all the mutations look like this in the Vue dev tools: `MyStoreName/__mystorename_internal_mutator__` I think having the field name in there would help a lot...

Currently in v2, the `createGettersAndMutationProxyFromState` function will try to recurse even if the field is an array.

I've been trying out this package in a Nuxt app, and I'm just trying to find a way to change paths with Vue Router inside a Vuex action. Normally that...