- 与 vue 中的插槽类似
```typescript
// src/app/app.component.htmlapp works
a
b
```typescript// src/app/hello/hello.component.html<div>hello works</div><div><ng-content select=".a"></ng-content></div><div><ng-content select=".b"></ng-content></div>
- 如果只有一个 ng-content,不需要 select 属性
- ng-content 在浏览器中会被 替代,如果不想要这个额外的div,可以使用 ng-container 替代这个div
```typescript
// src/app/app.component.htmlapp works
