vue开发

2018-11-14 tinymce 富文本重新渲染

2018-11-26  本文已影响5人  YZY君

利用v-if控制显示

<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>

https://www.cnblogs.com/s313139232/p/9176820.html

上一篇下一篇

猜你喜欢

热点阅读