Vue刷新页面的三种方式
程序员文章站
2022-05-14 22:57:36
...
1.原始方法:
location.reload();
2.ue自带的路由跳转:
this.$router.go(0);
3.首先在App里面写下如下代码:
<template>
<div id="app">
<router-view v-if="isRouterAlive"></router-view>
</div>
</template>
<script>
export default {
name: 'App',
provide () { //父组件中通过provide来提供变量,在子组件中通过inject来注入变量。
return {
reload: this.reload
}
},
data() {
return{
isRouterAlive: true //控制视图是否显示的变量
}
},
methods: {
reload () {
this.isRouterAlive = false; //先关闭,
this.$nextTick(function () {
this.isRouterAlive = true; //再打开
})
}
},
}
</script>
我们就可以在需要刷新页面的组件里这样用:
export default {
inject:['reload'], //注入App里的reload方法
data () {
return {
.......
}
},
在需要刷新页面的代码块中使用:
this.reload();
上一篇: vue中强制刷新页面的方法?
下一篇: vue刷新页面的三种方式