【vue】watch监听数组变化

watch: {
  list: {
    deep: true,//深度监听
    handler: function() {
      dosomething
    }
  }
},
原文地址:https://www.cnblogs.com/kevinmajesty/p/10668066.html