我想提供仅在内容未被转换时才会出现的默认内容.
原文链接:https://www.f2er.com/angularjs/141217.html例如,这是我的组件模板:
<article> <header> <ng-content select="[header]"></ng-content> </header> <section> <ng-content></ng-content> </section> </article>
我可以像这样使用它:
<my-component> <h1 header>This is my header</h1> <p>This is my content</p> </my-component>
现在如果我想提供默认标头怎么办?可能吗;没有杂技,比如检查ngAfterContentInit中的内容?