监听数据改变 得到一个值并把值保存到本地
watch: {
list: {
deep: true,
handler(newVal) {
localStorage.setItem("list", JSON.stringify(newVal));
},
},
},
在数据中可以取出保存到本地中的值 注意这个值是字符串形式 需要进行转换
list: JSON.parse(localStorage.getItem("list"))||[],