Vue:属性
Vue属性:el、data、computed、mounted、route、
<script> var vm = new Vue({ el: '#app', data: {
message: 'Runoob!',
id: parseInt(this.$route.params.id),
count: 1,
}, computed: { reversedMessage: function () { return this.message.split('').reverse().join('') // `this` 指向 vm 实例 } },
watch: {
counter: function(nval, oval){
alert('计数值的变化:' + oval + ' 变为 ' + nval + '!'),
}
}, }) </script>