vue introduction
Template syntax
Computed property-1
Computed property-2
custom-shape
class and style
Conditional rendering
List rendering
Single File Component-1
Single File Component-2
Single File Component-3
route-1
route-2
route-3
vuex-1
vuex-2
藏锋入鞘5年前
只有能改变数组原始数据的方法才会被VUE检测到,比如 push、shift() 等,像 concat()、filter() 返回新数组的方法,可以使用 新数组赋值老数组的方式渲染。 如果直接通过下标改变数组的值,如 this.datalist[0] = 'xxx'; VUE 无法检测,可以通过 Vue.set(arr, index, value) 或者 array.splice() 的方式来更新数组的值。
1