[Vue][ElementUI] 能否使用变量名创建组件

[Vue][ElementUI] Can I use the variable name to create a component

有一个NavMenu和一个Maincomponent.Once我点击菜单,我想在Main组件中创建一个组件
在单击之前我不知道将创建什么组件。

main.vue:
<el-tabs v-model='xxx'>
    <el-tab-pane>[there will be the component]</el-tab-pane>
</el-tabs>

怎么办?

Can I use the variable name to create a component?

是的,它叫做Dynamic Components

了解更多 Dynamic Components here

您可以使用属性 is 创建动态组件。

了解更多 :it here

<component v-bind:is="currentTabComponent"></component>