我正在尝试自学 angular2。我试图构建组件“触发调整大小”,我想将其呈现为:
<a class="hidden-xs" href="">
<em class="fa fa-navicon"></em>
</a>
而不是:
<trigger-resize>
<a class="hidden-xs" href="">
<em class="fa fa-navicon"></em>
</a>
</trigger-resize>
(我不希望自定义选择器呈现)
在角度1中。我知道它可以通过“replace:true”选项来实现,但是有可能在angular2中实现吗?
亲切的问候