From 90a775bab93354095cf50086f0124c627486b859 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Wed, 23 Oct 2024 17:49:17 +0200 Subject: [PATCH] docs(table): update --- docs/content/3.components/table.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/content/3.components/table.md b/docs/content/3.components/table.md index ecb7cd30..20945cdd 100644 --- a/docs/content/3.components/table.md +++ b/docs/content/3.components/table.md @@ -14,10 +14,6 @@ links: The Table component is built on top of [TanStack Table](https://tanstack.com/table/latest) and is powered by the [useVueTable](https://tanstack.com/table/latest/docs/framework/vue/vue-table#usevuetable) composable to provide a flexible and fully type-safe API. -::note -Some features of **TanStack Table** are not supported yet, we'll add more over time. -:: - ::component-example --- source: false @@ -30,6 +26,10 @@ class: '!p-0' This example demonstrates the most common use case of the `Table` component. Check out the source code on GitHub. :: +::note +Some features of **TanStack Table** are not supported yet, we'll add more over time. +:: + ### Data Use the `data` prop as an array of objects, the columns will be generated based on the keys of the objects.