其他分享
首页 > 其他分享> > vue页面刷新常用方法

vue页面刷新常用方法

作者:互联网

方法一: location.reload();   方法二: this.$router.go(0);     注意:方法一和方法二都会刷新整个页面   方法三: provide() 与 inject 结合;     在父组件(不一定是app.vue,例如含导航菜单的地方也会用route-view):
<template>
    <router-view v-if="isRouterAlive"/>
</template>
<script>
export default {
  name: 'App',
  provide () {
    return {
      reload: this.reload
    }
  },
  data () {
    return {
      isRouterAlive: true
    }
  },
  methods: {
    reload() {
      this.isRouterAlive = false
      this.$nextTick(function(){
        this.isRouterAlive = true
      })
    }
  }
}
</script>
在要做刷新处理的子组件中:
export default {
  inject: ['reload'],
  methods: {
    refreshPage () {
      this.reload()
    }
  }
}

 

 

标签:vue,methods,true,isRouterAlive,reload,刷新,方法,页面
来源: https://www.cnblogs.com/wcx-20151115-hzz/p/14985473.html