vue组件重新加载的方法
Posted kaibindirver
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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.reload()
参考: https://www.cnblogs.com/s313139232/p/9176820.html (他有2种方法)
以上是关于vue组件重新加载的方法的主要内容,如果未能解决你的问题,请参考以下文章