Vue 3.0 中我们使用 reactive() 定义的响应式数据的时候,当我们对象再次赋值,我们发现数据已经修改成功,但是页⾯并没有自动渲染成最新的数据; 

使用vue的强制刷新处理

<script setup>
import { defineComponent , ref , computed , toRefs , getCurrentInstance} from 'vue'

const internalInstance = getCurrentInstance()
//操作数据后更新视图  例如tabledata= xxx后
internalInstance.ctx.$forceUpdate()

}

</script>

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐