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>