Appearance
Vue 固定行 pinned
pinnedTop / pinnedBottom 传入的行冻结在表头下方与表尾上方,不参与虚拟滚动,随横向滚动同步。也可以在运行时用 ref 上的 setPinnedRows() 替换。
使用的 API
ts
type Options = {
list: T[]; // 数据列表
itemKey: string; // 行唯一标识字段名
estimatedSize: number; // 行预估高度(px)
border: boolean; // 是否显示边框
pinnedTop?: T[]; // 冻结在表头下方的行
pinnedBottom?: T[]; // 冻结在表尾上方的行
}
// 实例方法(ref 上调用)
tableRef.value?.setPinnedRows(topRows, bottomRows);完整语义(与合计行/合并/选中的关系、行高与命中测试的边界)见 Vanilla · 固定行 pinned。
示例
微应用尚未挂载。
源码
点击查看源码
vue
<template>
<div class="demo-wrapper">
<h3 class="demo-title">Vue 固定行 pinned</h3>
<div class="demo-hint">
首行冻结在表头下方、末行冻结在表尾上方,均不参与虚拟滚动,随横向滚动同步。
</div>
<div style="width: 680px; height: 460px" class="demo-container">
<VirtTableVue :columns="columns" :options="options" />
</div>
</div>
</template>
<script setup lang="ts">
import { VirtTableVue, type VueTableColumn } from '@virt-table/vue';
import { faker } from '@faker-js/faker';
interface Row extends Record<string, unknown> {
id: number | string;
name: string;
qty: number;
amount: number;
}
const columns: VueTableColumn<Row>[] = [
{ key: 'id', title: 'ID', width: 120 },
{ key: 'name', title: '名称', width: 220 },
{ key: 'qty', title: '数量', width: 160, align: 'right' },
{ key: 'amount', title: '金额', width: 160, align: 'right' },
];
const list: Row[] = Array.from({ length: 1000 }, (_, i) => ({
id: i + 1,
name: faker.commerce.productName(),
qty: faker.number.int({ min: 1, max: 100 }),
amount: faker.number.int({ min: 100, max: 9999 }),
}));
const pinnedTop: Row[] = [{ id: '★', name: '【置顶】重点商品', qty: 999, amount: 99999 }];
const pinnedBottom: Row[] = [{ id: '∑', name: '【置底】统计说明', qty: 0, amount: 0 }];
const options = {
list,
itemKey: 'id',
estimatedSize: 40,
buffer: 6,
border: true,
pinnedTop,
pinnedBottom,
};
</script>