Table
A responsive and customizable table for displaying tabular data.
When to Use
- To display data in a structured, tabular format.
- To allow users to sort and select data for further actions.
Usage
js
import { Table } from '@youcan/alto';
import type { TableColumn } from '@youcan/alto/types';
vue
<Table :table-columns="tableColumns" table-id="users-list" :items="users" selectable />