美文网首页
Vue Typescript watch 使用

Vue Typescript watch 使用

作者: RickyWu585 | 来源:发表于2021-04-18 22:56 被阅读0次
import {Component, Watch} from 'vue-property-decorator';
@Component
export default class Types extends Vue {
  value1 = '';

  @Watch('value1')
  onValueChanged(value_new: string,value_old:string) {
    this.$emit('update:value',value_new)
  }
}

相关文章

网友评论

      本文标题:Vue Typescript watch 使用

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