VUE管理系统项目中,在不刷新页面的情况下,更新页面。
// 先注册一个名为 `redirect` 的路由
<script>
export default {
beforeCreate() {
const { params, query } = this.$route
const { path } = params
this.$router.replace({ path: '/' + path, query })
},
render: function(h) {
return h() // avoid warning message
}
}
</script>
// 手动重定向页面到 '/redirect' 页面
const { fullPath } = this.$route
this.$router.replace({
path: '/redirect' + fullPath
})
当遇到你需要刷新页面的情况,你就手动重定向页面到redirect
页面,它会将页面重新redirect
重定向回来,由于页面的 key 发生了变化,从而间接实现了刷新页面组件的效果。