美文网首页
vue刷新当前页面(用户体验较好,不会白屏)

vue刷新当前页面(用户体验较好,不会白屏)

作者: MGLMONSTER | 来源:发表于2019-10-18 17:42 被阅读0次

    --------------------------------------------------App.vue--------------------------------------------------

    <router-view v-if="isRouterAlive"/>
    
    export default{
    
        provide () {
    
            return {
    
                reload: this.reload
    
            }
    
        },
    
        data(){
    
            return{
    
                isRouterAlive: true
    
            }
    
        },
    
        methods:{
    
            //重载
    
            reload () {
    
                this.isRouterAlive = false
    
                this.$nextTick(function () {
    
                    this.isRouterAlive = true
    
                });
    
            }
    
        }
    
    }
    

    --------------------------------------------------需要用到刷新的页面--------------------------------------------------


    image

    调用:this.reload();

    相关文章

      网友评论

          本文标题:vue刷新当前页面(用户体验较好,不会白屏)

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