let vm = new Vue({ el: '#app', data: { number: 0 }, methods: { res() { console.log("再次读取这个方法") } }, watch: { number: ["res"] }})请问下watch中监听number使用了ES6新语法,为什么不是能直接写[res],而要写成字符串形式["res"]才能获取到methods中的res方法?
添加回答
举报
0/150
提交
取消