我想创建自己的表组件,以添加复选框列和围绕列的一组ng-container进行操作。
示例
<my-table>
<ng-container matColumnDef="someCol">...</ng-container>
</my-table>
自定义表格组件将具有
<table matTable>
Columns local to component
+ columns passed from the component
</table>
不幸的是(而且显然)我失去了所有的上下文和变量。我只是不知道该怎么办。
感谢您的帮助。