我想要一个组件指令来渲染放置在其选择器内的任何内容,以便在其 html 内的特定部分进行渲染。
在这种情况下,页眉、页脚、主要内容。
任何.html
<any-selector>
<div>content to place</div>
</any-selector>
期望它呈现以下内容
任意选择器.html
<header><div>content to place</div></header>
<main><div>content to place</div></main>
<footer><div>content to place</div></footer>
尝试过,ng-content但它仅在第一次出现时呈现<ng-content>
如果有什么办法可以达到这个目的吗?
ITMISS
相关分类