美文网首页
vue+ts 中使用 watch

vue+ts 中使用 watch

作者: 泡杯感冒灵 | 来源:发表于2021-05-20 15:07 被阅读0次
import {Component, Vue, Watch} from 'vue-property-decorator';
private data = {};
private num = 0;

// 深层监听对象变化
@Watch('data ', {deep: true})
handleWatch() {
   this.drawPieChart();
}

@Watch('监听的数据名字')
方法名(newVal, oldVal) {
  console.log("newVal", newVal, "oldVal", oldVal)
};

相关文章

网友评论

      本文标题:vue+ts 中使用 watch

      本文链接:https://www.haomeiwen.com/subject/hjxbjltx.html