私は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 からタグを削除する方法はありますか? tr とその子を html 内に表示するだけで済みます。期待される結果は次のようになります。
<tr _ngcontent-c0>
<td _ngcontent-c0>something</td>
</tr>