vuex
vuex copied to clipboard
🗃️ Centralized State Management for Vue.js.
### Version 4.0.0 ### Reproduction link [https://codepen.io/JCH77/pen/vYxmOBJ](https://codepen.io/JCH77/pen/vYxmOBJ) ### Steps to reproduce Use esm-browser builds Import Vue 3.0.11 => OK Import Vuex 4.0.0 => The following error occurs : *Uncaught TypeError:...
### What problem does this feature solve? With the introduction of inference from template strings in TS 4.1.0 it will finally be possible to make Vuex completely type safe (validating...
### What problem does this feature solve? our team just adopted VueJS recently and I really don't like using the mapXXX helpers for a couple of reasons. 1. bad readability...
### What problem does this feature solve? While I was looking through the examples of the 4.0 alpha version, I thought that when you have a large store it can...
### Version 3.1.2 ### Reproduction link [https://codesandbox.io/s/compassionate-hermann-msyze](https://codesandbox.io/s/compassionate-hermann-msyze) ### Steps to reproduce 1. Create a module with _vuex-module-decorators_ 2. Set the `dynamic` and `preserveState` flags to `true` ```ts @Module({ dynamic: true,...
### What problem does this feature solve? This made namespaced module can be use like simple vuex store. ### What does the proposed API look like? `store/modules/myModule.ts` ```ts export const...
### What problem does this feature solve? If you subscribe to an action an return a promise or use an await statement, the code does not wait for the request...
### What problem does this feature solve? This feature adds the ability to retrieve the store module context directly from root store instance. ### What does the proposed API look...
### What problem does this feature solve? Vuex doesn't provide a way for plugins to be notified when modules are added to the store dynamically through `registerModule`. This means that...
### What problem does this feature solve? IMO, time-traveling (or traversing in the event sourcing record) should have no side-effects. Often, I found it is annoying when I "time-traveled", there...