The Vue plugin for work with LocalStorage from Vue context
vue-localstorage
is wrapper for work with the Storage interface of the Web Storage API.
# install deps
yarn install
# build dist files
gulp
# run tests
yarn run test
This is looks like work with the Web Storage API.
new Vue({
el: '#app',
mounted: function() {
this.$localStorage.set('foo', 'boo');
//also you can set expire for item
this.$localStorage.set('foo', 'boo', 60 * 60 * 1000); //set an expiry of item at 1 hour
this.$localStorage.set('foo', 'boo', 0); //endless item
this.$localStorage.remove('foo');
}
});
If this project help you reduce time to develop, you can give me a cup of coffee :)