vue强制更新$forceUpdate()

Posted on 2019-05-12 10:55  猫头唔食鱼  阅读(21906)  评论(0编辑  收藏  举报

调用强制更新方法this.$forceUpdate()会更新视图和数据,触发updated生命周期。

<template>
<div>
    home
    <button @click="reload()">强制更新</button>
</div>
</template>
<script>
export default {
  name: "Home",
  data () {
    return {
    };
  },
  updated(){
      console.log("更新了");
  },
  methods:{
      reload(){
          this.$forceUpdate();
      }
  }
}
</script>