var data = { a: 1 } var vm = new Vue({ data: data }) vm.$data.a = 22 ; 输出的vm的属性值被改变了,但是视图内容未改变,添加 vm.$forceUpdate();