vue-ls 本地存储
一种可以设置有效期的本地存储方式安装npm install vue-ls --save使用import Storage from 'vue-ls';let options = {namespace: 'vuejs__', // key prefixname: 'ls', // name variable Vue.[ls] or this.[$ls],stor...
·
一种可以设置有效期的本地存储方式
安装
npm install vue-ls --save
使用
import Storage from 'vue-ls';
let options = {
namespace: 'vuejs__', // key prefix
name: 'ls', // name variable Vue.[ls] or this.[$ls],
storage: 'local', // storage name session, local, memory
};
Vue.use(Storage, options);
new Vue({
el: '#app',
mounted: function() {
Vue.ls.set('foo', 'boo');
// Set expire for item
Vue.ls.set('foo', 'boo', 60 * 60 * 1000); //expiry 1 hour
Vue.ls.get('foo');
Vue.ls.get('boo', 10); //if not set boo returned default 10
let callback = (val, oldVal, uri) => {
console.log('localStorage change', val);
}
Vue.ls.on('foo', callback) //watch change foo key and triggered callback
Vue.ls.off('foo', callback) //unwatch
Vue.ls.remove('foo');
}
});
更多推荐
已为社区贡献14条内容
所有评论(0)