vue 使用localStorage保存页面变量到浏览器变量中
Posted 微笑代表淡定的心
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 使用localStorage保存页面变量到浏览器变量中相关的知识,希望对你有一定的参考价值。
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)) } }
以上是关于vue 使用localStorage保存页面变量到浏览器变量中的主要内容,如果未能解决你的问题,请参考以下文章
vue 中使用vuex和localStorage保存登录状态
Vue.JS - 如何在 Vue.JS 中使用 localStorage