深度监听
deep:true
handler
watch: {
cateList: {
deep: true,
handler: (val) => {
uni.setStorageSync("cateList", val);
},
},
一般用这个属性来做监听数据变化进而执行一些方法
深度监听
deep:true
handler
watch: {
cateList: {
deep: true,
handler: (val) => {
uni.setStorageSync("cateList", val);
},
},
一般用这个属性来做监听数据变化进而执行一些方法
>