美文网首页
this.$forceUpdata()

this.$forceUpdata()

作者: 90后徐先生 | 来源:发表于2020-01-08 19:39 被阅读0次
我对于它得理解就是强制更新组件 例如
<template>
<div>
    <button @click="reload()">强制更新</button>
</div>
</template>
<script>
export default {
  name: "Home",
  data () {
    return {
    };
  },
  updated(){
      console.log("更新了");
  },
  methods:{
      reload(){
          this.$forceUpdate();
      }
  }
}
</script>
点击得时候会持续触发updated中的打印

相关文章

网友评论

      本文标题:this.$forceUpdata()

      本文链接:https://www.haomeiwen.com/subject/llpwoctx.html