this.$forceUpdate()都无法更新

用v-if空值这个组件

data(){
	return {
	show:true
	}
}
想更新
show=false;
     this.$nextTick(()=>{
        this.show=true;
      })

就能更新了

你可能感兴趣的:(vue)