Vue.js Warehouse
A Cross-browser storage for Vue.js and Nuxt.js, with plugins support and easy extensibility based on Store.js.
This plugin will pick the best available browser storage, and automatically falls back to the first available storage that works.
Features
- Backed by the great library Store.js
- Support for multiple Storages (localStorage, cookies, etc.)
- Basic key/value storage functionality (get/set/remove/each)
- Easy integration with Vue.js
- Support for Nuxt.js
- Get notified with Vuex when the stored values change
Why use this plugin
Some reasons why you could consider to use this plugin:
- Use a fallback Browser storage method in case the user's browser has limitations. Safari in Private mode can deny writing data in localStorage.
- Easy extensibility with Plugins. Support for expiring stored values at a given time, declare default values, etc.
- A consistent API across browsers for a key/value storage functionality.
- Easy definition of alternative Storage methods. For example: you could reuse a Vue Component, that relies on a storage method, in the user's browser (using localStorage) or a mobile app (using NativeScript application-settings module) just by changing the storage method without modifying the internal logic of the component.
- Synchronization of stored values changes with Vuex.
Installation
This module is distributed via [npm][npm-homepage] which is bundled with [node][node-homepage] and should be installed as one of your project's dependencies
:
or
Example of use
Suppose you want to use localStorage by default and cookies as an alternative in case your user's browser doesn't allow any interaction with localStorage (Safari Private mode). Besides, you want to define defaults values and an expiration date for all the data that is going to be saved.
Configuration for Vue.js
Configuration for Nuxt.js
API Usage
Vuex State
The last change made to the browser store (localStorage, cookie, etc.) are synced with the Vuex state: