vue3.0缓存good-storage的使用
npm install good-storage
// localStorage(长期缓存)
this.storage.get(key) //取值
this.storage.clear() //清除所有记录
// sessionStorage(短期缓存),同上,就是后面加上session就可以
this.storage.session.get(key,val)
npm install good-storage
// localStorage(长期缓存)
this.storage.get(key) //取值
this.storage.clear() //清除所有记录
// sessionStorage(短期缓存),同上,就是后面加上session就可以
this.storage.session.get(key,val)