>
> _Piรฑa_ is also an invalid package name... that's why it has to be _pinia_ which sounds very similar
-๐Automatically Typed, Modular and lightweight (but **Experimental**) Store for Vue 3.x based on the composition api with devtools support
+๐ Automatically Typed, Modular and lightweight (but **Experimental**) Store for Vue 3.x based on the composition api with devtools support
## ๐ [Demo on CodeSandbox](https://j4qzw.csb.app/)
What I want is to inspire others to think about ways to improve Vuex and come up with something that works very well with the composition api. Ideally it could also be used without it.
-There are the core principles that I try to achieve with this experiment:
+These are the core principles that I try to achieve with this experiment:
+- Autocompletion: even if you write your code in JavaScript!
- Flat modular structure ๐ No nesting, only stores, compose them as needed
- Light layer on top of Vue ๐จ keep it very lightweight
-- Only `state`, `getters`
-- No more verbose mutations, ๐ `patch` is _the mutation_
-- Actions are like _methods_ โ๏ธ Group your business there
+- Only `state`, `getters` and `actions`
+- No more verbose mutations, ๐ `patch` is _**the** mutation_
+- Actions are like _methods_ โ๏ธ Group your business logic there
- Import what you need, let webpack code split ๐ฆ No need for dynamically registered modules
- SSR support โ๏ธ
- DevTools support ๐ป Which is crucial to make this enjoyable