美文网首页
组件的销毁

组件的销毁

作者: 小蜗牛的碎碎步 | 来源:发表于2020-01-15 09:37 被阅读0次
    1. 动态组件切换时,被隐藏的组件执行destroy,被显示的组件执行生命周期钩子,被重新渲染。
      <component :is="currentTabComponent"></component>
    
    1. 如果不想每次切换都需要重新创建组件,可以放在<keep-alive></keep-alive>标签中,此时的destroy不会被执行。
     <keep-alive>
          <component :is="currentTabComponent"></component>
    </keep-alive>
    

    相关文章

      网友评论

          本文标题:组件的销毁

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