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

2019-10-18  本文已影响0人  MGLMONSTER

--------------------------------------------------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();

上一篇下一篇

猜你喜欢

热点阅读