vue按需加载组件,异步组件

Posted ywjbalabala

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue按需加载组件,异步组件相关的知识,希望对你有一定的参考价值。

vue2按需加载组件,或者异步组件,主要是应用了component的 is 属性

vue2中的动态组件component,官方文档

<!-- 组件会在 `currentTabComponent` 改变时改变 -->
<component v-bind:is="currentTabComponent"></component>

在上述示例中,currentTabComponent 可以包括

  • 已注册组件的名字,或
  • 一个组件的选项对象

其中一个组件的选项对象可以是以三种:

  • 字符串 (例如:template: \'...\'),即 currentTabComponent = template: \'<div>...</div>\'
  • 单文件组件 (.vue) ,如按需引入组件 currentTabComponent= ()=> import (\'@/.../xxx.vue\') ;
    • vue3中通过辅助函数defineAsyncComponent(()=>import(\'./components/test\'))
  • <script type="text/x-template">

以上是关于vue按需加载组件,异步组件的主要内容,如果未能解决你的问题,请参考以下文章

vue的异步组件按需加载

Vue按需加载

异步组件懒加载 获取不到ref

vue项目实现路由按需加载的3种方式

vue中,组件怎么做到按需加载呢

vue 组件按需引用,vue-router懒加载,vue打包优化,加载动画