You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use the `experimental.componentDetection` option to enable automatic component detection for tree-shaking. This feature scans your source code to detect which components are actually used and only generates the necessary CSS for those components (including their dependencies).
Copy file name to clipboardExpand all lines: docs/content/docs/2.components/table.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -595,7 +595,7 @@ class: '!p-0'
595
595
---
596
596
::
597
597
598
-
### With virtualization :badge{label="Soon"}
598
+
### With virtualization :badge{label="4.1+"}
599
599
600
600
Use the `virtualize` prop to enable virtualization for large datasets as a boolean or an object with options like `{ estimateSize: 65, overscan: 12 }`. You can also pass other [TanStack Virtual options](https://tanstack.com/virtual/latest/docs/api/virtualizer#optional-options) to customize the virtualization behavior.
Copy file name to clipboardExpand all lines: docs/content/docs/2.components/tree.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -148,7 +148,7 @@ props:
148
148
---
149
149
::
150
150
151
-
### Nested :badge{label="Soon"}
151
+
### Nested :badge{label="4.1+"}
152
152
153
153
Use the `nested` prop to control whether the Tree is rendered with nested structure or as a flat list. Defaults to `true`.
154
154
@@ -501,7 +501,7 @@ props:
501
501
This lets you select a parent item without expanding or collapsing its children.
502
502
::
503
503
504
-
### With checkbox in items :badge{label="Soon"}
504
+
### With checkbox in items :badge{label="4.1+"}
505
505
506
506
You can use the `item-leading` slot to add a [Checkbox](/docs/components/checkbox) to the items. Use the `multiple`, `propagate-select` and `bubble-select` props to enable multi-selection with parent-child relationship and the `select` and `toggle` events to control the selected and expanded state of the items.
507
507
@@ -518,7 +518,7 @@ props:
518
518
This example uses the `as` prop to change the items from `button` to `div` as the [`Checkbox`](/docs/components/checkbox) is also rendered as a `button`.
519
519
::
520
520
521
-
### With drag and drop :badge{label="Soon"}
521
+
### With drag and drop :badge{label="4.1+"}
522
522
523
523
Use the [`useSortable`](https://vueuse.org/integrations/useSortable/) composable from [`@vueuse/integrations`](https://vueuse.org/integrations/README.html) to enable drag and drop functionality on the Tree. This integration wraps [Sortable.js](https://sortablejs.github.io/Sortable/) to provide a seamless drag and drop experience.
0 commit comments