vue.js - Vue 如何像Angular.js watch 一样监听数据变化
世界只因有你
世界只因有你 2017-05-15 17:07:33
0
4
832

例如,我对一个输入框中的内容进行监听,

当数据变化的时候执行某个函数,否则执行另一个函数。

世界只因有你
世界只因有你

reply all(4)
Ty80
new Vue({
    watch: {
        name: function(newValue, oldValue){
        }
    }
})
巴扎黑

Vue’s responsiveness is the ob.observe() method, and there is no need for dirty monitoring methods like watch.

我想大声告诉你

vue also has watch method, see http://cn.vuejs.org/guide/com...

伊谢尔伦

Vue provides a more general method to reflect data changes through watch settings

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template