标签:gif blog vuejs dos return tps storage 引用 roman
引用:https://www.cnblogs.com/st-leslie/p/5617130.html
const STORAGE_KEY = ‘todos-vuejs‘;
export default{
fetch(){
return JSON.parse(window.localStorage.getItem(STORAGE_KEY) || ‘[]‘);
},
save(items){
window.localStorage.setItem(STORAGE_KEY,JSON.stringify(items));
}
}
标签:gif blog vuejs dos return tps storage 引用 roman
原文地址:https://www.cnblogs.com/wanlibingfeng/p/9621041.html