美文网首页vue开发
2018-11-14 tinymce 富文本重新渲染

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

作者: YZY君 | 来源:发表于2018-11-26 11:43 被阅读5次

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

相关文章

网友评论

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

    本文链接:https://www.haomeiwen.com/subject/dhejfqtx.html