vue 内存数组变化监听

    watch: {
      carts: {
        handler(val, oldVal) {
          subtotal(this.carts);
          console.log(this.carts)
        },
        deep: true
      }
    }

注意这个handler 一定要有,deep:true,开启内层

posted @ 2019-11-07 17:15  火鸟网络  阅读(248)  评论(0编辑  收藏  举报