1、
this.$nextTick(()=>{
//更新dom元素
})
2、
子组件上添加 v-if 条件用于反显
3、
子组件添加 :key=“indexKey”
在data()中定义 indexKey
每次传值 indexKey++
<zi-zu-jian :key="indexKey"></zi-zu-jian>
data(){
return {
indexKey:0,
}
}
methods:{
xiugaizhi(){
indexKey++
}
}
4、实时监听
watch: {
ziValue: { //子组件中的值
handler(newValue, oldValue) {
this.ziValue = newValue
},
deep: true,
immediate: true
},
}
5、
$forceUpdate() //不建议,会整个更新dom