new Vue({ data: { msg: 'hello', say: 'hello world', }, watch: { msg(newVal) { this.say = newVal + ' world'; } } })
vue中wath的源码实现
内容版权声明:除非注明,否则皆为本站原创文章。
new Vue({ data: { msg: 'hello', say: 'hello world', }, watch: { msg(newVal) { this.say = newVal + ' world'; } } })
内容版权声明:除非注明,否则皆为本站原创文章。