Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Reference for Nuxt UI v4 (125+ components built on Reka UI + Tailwind CSS v4) including forms, overlays, and theming.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
components/table.md
1# Table23A responsive table element to display data in rows and columns.45## Key Props67- `data`: as an array of objects, the columns will be generated based on the keys of the objects.8- `columns`: as an array of [ColumnDef](https://tanstack.9- `meta`: as an object ([TableMeta](https://tanstack.10- `loading`: to display a loading state, the `loading-color` prop to change its color and the `loading-animation` prop to change its animation.11- `sticky`: to make the header or footer sticky.12- `virtualize`: to enable virtualization for large datasets as a boolean or an object with options like `{ estimateSize: 65, overscan: 12 }`.1314## Usage1516```vue17<UTable18<!-- props here -->19/>20```21