vuetify-draggable-treeview
Drag and drop v-treeview (Vuetify Treeview) component.
Installation
Setup
Usage
Basic Example
Drag and drop only in children.
Using slot
API
Currently, this component dose not support all original v-treeview
component's props, slots, event.
Props
Name | Type | Default | Description |
---|---|---|---|
value | Object | [] | items for treeview. item-key , item-text , item-children are not customizable currently. value can be like { id: 1, name: "test", children: []} . |
group | string | null | group name for vuedraggable. If this props not provided, drag and drop are enabled only in children. |
Events
Name | Value | Description |
---|---|---|
input | array | Emits the array of selected items when this value changes |
Slots
Name | Props | Description |
---|---|---|
append | { item: any, open: boolean } | Appends content after label |
label | { item: any, open: boolean } | Label content |
prepend | { item: any, open: boolean } | Prepends content before label |