0.1.7 • Published 6 years ago

v-web-storage v0.1.7

Weekly downloads
2
License
ISC
Repository
-
Last release
6 years ago

####安装 npm install v-web-storage --save-dev ####vue中使用

import storagePlugin from 'v-web-storage'
Vue.use(storagePlugin)

####设置

this.$storage.local.set(key, val);
this.$storage.session.set(key, val);

####获取

this.$storage.local.get(key);
this.$storage.session.get(key);

####移除指定的一个

this.$storage.local.remove(key);
this.$storage.session.remove(key);

####移除所有

this.$storage.local.clear();
this.$storage.session.clear();

####是否有某个键

this.$storage.local.hasKey(key);
this.$storage.session.hasKey(key);
0.1.7

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago