Appearance
序号列
通过列类型 index 添加自动递增的序号列。
使用的 API
ts
type Column = {
key: string; // 列标识(必填)
title: string; // 列标题(必填)
width: number; // 列宽(必填)
type: 'index'; // 特殊列类型:序号列
align: 'left' | 'center' | 'right'; // 列的水平对齐(应用于表头、表身、表尾)
}
type Options = {
list: T[]; // 数据列表
itemKey: string; // 行唯一标识字段名
estimatedSize: number; // 行预估高度(px)
buffer: number; // 缓冲区行数
border: boolean; // 是否显示边框
}示例
微应用尚未挂载。
源码
点击查看源码
ts
import { faker } from '@faker-js/faker';
import { VirtTable, type VirtTableColumn } from '@virt-table/vanilla';
const COL_COUNT = 8;
const ROW_COUNT = 1000;
export function bootstrapTableIndex(root: HTMLElement): () => void {
const columns: VirtTableColumn[] = [
{ key: '__index', title: '#', width: 60, type: 'index' as const, align: 'center' },
...Array.from({ length: COL_COUNT }, (_, i) => ({
key: `col_${i}`,
title: `列 ${i}`,
width: 200,
})),
];
const list = Array.from({ length: ROW_COUNT }, (_, i) => {
const row: Record<string, any> = { id: i };
for (let c = 0; c < COL_COUNT; c++) {
row[`col_${c}`] = faker.lorem.words(6);
}
return row;
});
root.innerHTML = '<div style="width:800px;height:600px;" class="demo-container" id="tableContainer"></div>';
const container = root.querySelector('#tableContainer') as HTMLElement;
const table = new VirtTable(container, {
list,
columns,
itemKey: 'id',
estimatedSize: 40,
buffer: 4,
border: true,
});
return () => {
table.destroy();
root.innerHTML = '';
};
}