监听属性的变化
watch: {
counter: function (nval, oval) {
alert('计数器值的变化 :' + oval + ' 变为 ' + nval + '!')
}
}
04-08 20:22