2

我有两个组件:

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 标签?有没有办法从 ng-content 中删除标签?我只需要在 html 中显示 tr 及其子项。预期的结果应该更像:

<tr _ngcontent-c0>
   <td _ngcontent-c0>something</td>
</tr>
4

0 回答 0