我有两个组成部分:
App.component.html
<table>
<tr>
<td>something</td>
</tr>
</table>
Table.component.html(定义表格)
<ng-content></ng-content>
结果
<tbody _ngcontent-c0>
<tr _ngcontent-c0>
<td _ngcontent-c0>something</td>
</tr>
</tbody>
为什么有tbody-tag?有没有办法从ng-content中删除标签? 我只需要在html中显示带有子元素的tr。预期结果应该更像:
<tr _ngcontent-c0>
<td _ngcontent-c0>something</td>
</tr>