码迷,mamicode.com
首页 > 其他好文 > 详细

vue组件重新加载的方法

时间:2020-11-06 02:18:16      阅读:21      评论:0      收藏:0      [点我收藏+]

标签: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种方法)

vue组件重新加载的方法

标签:ret   class   style   http   reload   自己   rgba   outer   刷新   

原文地址:https://www.cnblogs.com/kaibindirver/p/13932783.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!