defineAsyncComponent( )
定义一个异步组件,它在运行时是懒加载的。参数可以是一个异步加载函数,或是对加载行为进行更具体定制的一个选项对象。在大型项目中,我们可能需要拆分应用为更小的块,并仅在需要时再从服务器加载相关组件。Vue 提供了 defineAsyncComponent 方法来实现此功能:
<div class="box" >
<component :is="aa"></component>
</div>
<script>
import { defineAsyncComponent } from 'vue'
computed: {
aa () {
this.xxxx = '组件名’
return AsyncComp (() => import(`../components/comps/${this.xxxx}.vue`))
}
<script>