如何以Vue做的简单方式在Angular中的动态组件中进行渲染?
例如,在vue中,我编写动态组件:
<component v-bind:is="'componentX'"></component>
等效角度是什么?
答案 0 :(得分:0)
来自 docs
<ng-template>
元素是您应用刚创建的指令的地方。要应用AdDirective,请从ad.directive.ts,广告主机中撤回选择器。
将其应用于不带方括号的位置。现在,Angular知道了在哪里动态加载组件。