摘要: 对象属性监听的两种方法: 1.普通的watch 1 data() { 2 return { 3 frontPoints: 0 4 } 5 }, 6 watch: { 7 frontPoints(newValue, oldValue) { 8 console.log(newValue) 9 } 10 阅读全文
posted @ 2020-04-22 17:18 smile_lg 阅读(533) 评论(0) 推荐(0) 编辑