学无先后,达者为师

网站首页 Vue 正文

vue数据改变页面不刷新

作者:顽石⚡ 更新时间: 2022-04-22 Vue

问题如题所述,解决方式如下

调用 this.$forceUpdate()方法强制刷新页面

   // 重新渲染组件
      this.$forceUpdate()

第一种如果没有用的话,使用v-if,先false,过段时间后再true,重写加载dom

 this.forceRefresh = false
  setTimeout(() => {
       this.forceRefresh = true
     }, 50)

原文链接:https://xuyangyang.blog.csdn.net/article/details/117808598

栏目分类
最近更新