A powerful toolkit for building datatable components
npm install @vincjo/datatables
A powerful toolkit for building datatable components.
apache
npm i -D @vincjo/datatables
`
Smooth transition from v1 to v2
In order to make the migration process a little easier, v1 is embed in “legacy” namespace so you will have the opportunity to upgrade your components progressively by simply modifying imports.
`diff
- @vincjo/datatables
+ @vincjo/datatables/legacy
- @vincjo/datatables/remote
+ @vincjo/datatables/legacy/remote
`
Sample code
`svelte
First name
Last name
{#each table.rows as row}
{row.first_name}
{row.last_name}
{/each}
``