标签:ret class style http reload 自己 rgba outer 刷新
<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.reload()
参考: https://www.cnblogs.com/s313139232/p/9176820.html (他有2种方法)
标签:ret class style http reload 自己 rgba outer 刷新
原文地址:https://www.cnblogs.com/kaibindirver/p/13932783.html