vue组件如何reload或者说vue-router如何刷新当前的route
作者:互联网
使用场景为增加商品表单,用户确定提交后,继续新增,需要清理之前用户输入数据,并对其初始化,再走一遍组件加载的流程,其中还包括几个子组件,如果手动去处理实在是太麻烦!!
利用v-if控制router-view,在路由容器组件,如APP.vue中实现一个刷新方法
<template>
<router-view v-if="isRouterAlive"/>
</template>
<script>
export default {
data () {
return {
isRouterAlive: true
}
},
methods: {
reload () {
this.isRouterAlive = false
this.$nextTick(() => (this.isRouterAlive = true))
}
}
}
</script>
然后其它任何想刷新自己的路由页面,都可以这样:
this.$root.reload()
如果$root节点不是路由容器组件,可以使用provide / inject来传递reload
路由容器组件:
<template>
<router-view v-if="isRouterAlive"/>
</template>
<script>
export default {
provide () {
return {
reload: this.reload
}
},
data () {
return {
isRouterAlive: true
}
},
methods: {
reload () {
this.isRouterAlive = false
this.$nextTick(() => (this.isRouterAlive = true))
}
}
}
</script>
子组件或者需要强制刷新的页面:
<script>
export default {
inject: ['reload'],
methods: {
clickReload() { // 点击之后强制刷新
this.reload()
}
}
}
</script>
标签:vue,route,isRouterAlive,reload,刷新,组件,true,路由 来源: https://blog.csdn.net/weixin_50377234/article/details/117441539