根本原因是
import()
是
异步
(它返回
许诺
)您所收到的错误已经告诉您:
[Vue warn]:解析异步组件失败
使用
看
将更好地像下面的演示(内部
Promise.then()
,更改组件类型),然后在安装前钩住或安装,以确保正确初始化支柱=类型:
<template>
<div>
<component :is="componentType">
<children/>
</component>
</div>
</template>
<script>
import DefaultComponent from './DefaultComponent'
export default {
name: 'DynamicComponent',
components: {
DefaultComponent
},
props: {
type: String,
},
data: {
componentType: 'DefaultComponent'
},
watch: {
type: function (newValue) {
import(`./types/type-${newValue}`).then(loadedComponent => { this.componentType = loadedComponent} )
}
},
mounted: function () {
import(`./types/type-${this.type}`).then(loadedComponent => { this.componentType = loadedComponent} )
}
}
</script>