当前vue路由组件重新加载
利用v-if控制router-view,在根组件APP.vue中实现一个刷新方法<template><router-view v-if="isRouterAlive"/></template><script>export default {data () {retur
·
- 利用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()
来源:https://www.zhihu.com/question/49863095/answer/289157209
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
- 路由替换
// replace another route (with different component or a dead route) at first
// 先进入一个空路由
vm.$router.replace({
path: '/_empty',
})
//then replace your route (with same component)
vm.$router.replace({
path: '/student/report',
query: {
'paperId':paperId
}
})
更多推荐
已为社区贡献2条内容
所有评论(0)