vue 中的组件相当于 Angular 中的组件是什么?

Jon*_*Sud 5 vue.js angular

如何像 vue 那样简单地在 Angular 中的动态组件中渲染?

例如,在 vue 中,要渲染动态组件,我编写:

<component v-bind:is="'componentX'"></component> 
Run Code Online (Sandbox Code Playgroud)

角度相当于什么?

Saj*_*ran 1

来自文档

<ng-template>元素是您应用刚刚制定的指令的地方。要应用 AdDirective,请调用 ad.directive.ts、ad-host 中的选择器。

将其应用于不带方括号的情况。现在 Angular 知道在哪里动态加载组件。