表格
一个响应式表格组件。
发票 | 状态 | 方法 | 金额 |
---|---|---|---|
INV001 | 已支付 | 信用卡 | $250.00 |
INV002 | 待定 | PayPal | $150.00 |
INV003 | 未支付 | 银行转账 | $350.00 |
INV004 | 已支付 | 信用卡 | $450.00 |
INV005 | 已支付 | PayPal | $550.00 |
INV006 | 待定 | 银行转账 | $200.00 |
INV007 | 未支付 | 信用卡 | $300.00 |
安装
bash
npx shadcn-vue@latest add table
使用
vue
<script setup lang="ts">
import {
Table,
TableBody,
TableCaption,
TableCell,
TableHead,
TableHeader,
TableRow,
} from '@/components/ui/table'
</script>
<template>
<Table>
<TableCaption>A list of your recent invoices.</TableCaption>
<TableHeader>
<TableRow>
<TableHead class="w-[100px]">
Invoice
</TableHead>
<TableHead>Status</TableHead>
<TableHead>Method</TableHead>
<TableHead class="text-right">
Amount
</TableHead>
</TableRow>
</TableHeader>
<TableBody>
<TableRow>
<TableCell class="font-medium">
INV001
</TableCell>
<TableCell>Paid</TableCell>
<TableCell>Credit Card</TableCell>
<TableCell class="text-right">
$250.00
</TableCell>
</TableRow>
</TableBody>
</Table>
</template>
数据表
您可以使用 <Table />
组件构建更复杂的数据表。将其与 @tanstack/vue-table 结合使用以创建具有排序、过滤和分页功能的表格。
有关更多信息,请参阅 数据表 文档。
您还可以查看 任务 演示中数据表的示例。