最佳答案
呈现组件时,将忽略组件内部的内容,例如:
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: '<div>{{title}}</div>',
})
export class AppComponent {
title = 'app works!';
}
像这样使用它:
<app-root>Ignored content</app-root>
渲染:
<div>app works!</div>
但是看看 PrimeNg 对话框,他们使用这样的组件:
<p-dialog [(visible)]="display">
<p-header>
Header content here
</p-header>
Content
<p-footer>
Footer content here
</p-footer>
</p-dialog>
由于 Header content here
、 Content
和 Footer content here
都在组件内部,为什么它们没有被忽略,我如何才能做到这一点?