Nano Stores Vue
Vue integration for Nano Stores, a tiny state manager with many atomic tree-shakable stores.
- Small. Less than 1 KB with all helpers. Zero dependencies.
- Fast. With small atomic and derived stores, you do not need to call
the selector function for all components on every store change. - Tree Shakable. The chunk contains only stores used by components
in the chunk. - Helpers. To save a few keystrokes and keep code clean.
- Devtools. Plugin with full support of Vue Devtools.
- Was designed to move logic from components to stores.
- It has good TypeScript support.
Install
Usage
Store state
Subscribe to store changes and use reactive store state.
Multiple store states
Generate multiple store states and save a few keystrokes.
Form handling
Since the store state is deep read-only, you cannot directly mutate it.
But for v-model
you can create model via useVModel(store, keys, opts)
.
It will explicitly mutate the store via store.set()
/ store.setKey()
.
The keys
argument can be an array of keys to create multiple models.
Each model will be prefixed with Model
. You can change it via opts.prefix
.
Devtools
Install
Usage
Store detector
Install Vue Devtools plugin as usual. It will detect nanostores
in selected component and add their states to the component inspector.
Notice: if you are using SSR, there is no Vue Devtools on server.
Check it’s a browser environment:
Attach stores to add them to the nanostores inspector
and see their builds, lifecycles and changes on the timeline.
You can connect several stores in different places of your application
and set custom names to simplify the work with devtools.
For MapTemplate
you can create a custom nameGetter
to set suitable names for each store built from template.
Settings
The states of all detected stores in component inspector are updated
in real time. You can disable this in the the plugin settings
via the Real-time update detected property.
By default, we removes unmounted stores from nanostores inspector
to keep it clean. You can change this via the Keep unmounted property.