我有一个在 Vue 3 中使用的 Stencil 组件库。
我的一个组件有一个道具,允许某人在其中动态使用自定义元素:
if (this.view) {
const DynamicView = this.view;
return <DynamicView model={this.model}></DynamicView>;
}
当我传递另一个 Stencil 组件的名称时,这非常有效,但我试图传递一个 Vue 组件。那有可能吗?
我有一个在 Vue 3 中使用的 Stencil 组件库。
我的一个组件有一个道具,允许某人在其中动态使用自定义元素:
if (this.view) {
const DynamicView = this.view;
return <DynamicView model={this.model}></DynamicView>;
}
当我传递另一个 Stencil 组件的名称时,这非常有效,但我试图传递一个 Vue 组件。那有可能吗?