【发布时间】:2019-07-13 06:36:48
【问题描述】:
我想实现以下目标:
<s-panel-edicion>
<s-barra-lateral posicion="right" icono="fa fa-cog" [animar]="true">cualquier contenido</s-barra-lateral>
<s-barra-lateral posicion="left" icono="fa fa-cog" [animar]="true">cualquier contenido </s-barra-lateral>
</s-panel-edicion>
左右是侧边栏的位置,这是我的编辑组件:
<div class="container-plantilla">
<div class="plantilla-template" [ngStyle]="moverBarraLeft">
<ng-content select="s-barra-lateral"></ng-content>
</div>
<div class="plantilla-contenido" [ngClass]="{'plantilla-contenido-oculto':!displayLeft,'plantilla-contenido-no-oculto':displayLeft,'plantilla-contenido-full':displayLeft}">
<ng-content select="s-contenido"></ng-content>
</div>
<div class="plantilla-template" [ngStyle]="moverBarraRight">
<ng-content select="s-barra-lateral"></ng-content>
</div>
</div>
只显示一侧。有人可以指导我如何实现这一目标吗?感谢您的帮助。
(我的英文不好,谢谢)
【问题讨论】:
标签: angular transclusion