Vue 3.0 中我们使用 reactive() 定义的响应式数据的时候,当我们对象再次赋值,我们发现数据已经修改成功,但是页⾯并没有自动渲染成最新的数据;
使用vue的强制刷新处理
<scriptsetup>
import {defineComponent , ref , computed , toRefs , getCurrentInstance} from 'vue'
constinternalInstance = getCurrentInstance()
//操作数据后更新视图 例如tabledata= xxx后
internalInstance.ctx.$forceUpdate()
}文章来源:https://www.toymoban.com/news/detail-583570.html
</script>文章来源地址https://www.toymoban.com/news/detail-583570.html
到了这里,关于vue3中数据更新,视图没有更新解决方案的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!