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