vue+ts监听对象的变化
import { Component, Vue, Watch} from 'vue-property-decorator'/*** 创建人:xxx* 时间:2020年7月30日* 描述:监听数据的变化*/@Watch('drawingList', { deep: true })handleWatch(){console.log('监听上面数组的内容')}...
·
import { Component, Vue, Watch} from 'vue-property-decorator'
/**
* 创建人:xxx
* 时间:2020年7月30日
* 描述:监听数据的变化
*/
@Watch('drawingList', { deep: true })
handleWatch(){
console.log('监听上面数组的内容')
}
更多推荐
已为社区贡献9条内容
所有评论(0)