ngx-auto-table
一个简单易用的Angular数据表。 (物料表周围的包装器)
功能包括
默认过滤和排序所有数据
使用RXJS可观察对象
在引擎盖下使用有角度的材质主题和图标
行和批量操作,易于配置
类型化数据传递到配置中
每列的自定义ng模板
安装
yarn add ngx-auto-table
然后添加到您的进口
import { AutoTableModule } from 'ngx-auto-table' ;
imports: [
...
AutoTableModule ,
...
]
然后将其添加到您的tsconfig中:
" compilerOptions " : {
...
" paths " : {
" @angular/* " : [ " node_modules/@angular/* " ]
}
用法
1