### Two Lists Data (List 1)
Source: https://vue-draggable-plus.pages.dev/demo/tow-list
Initial data structure for the first list. This JSON represents the items that will be displayed and made draggable.
```json
[
{
"name": "Joao",
"id": "1"
},
{
"name": "Jean",
"id": "2"
},
{
"name": "Johanna",
"id": "3"
},
{
"name": "Juan",
"id": "4"
}
]
```
--------------------------------
### Two Lists Data (List 2)
Source: https://vue-draggable-plus.pages.dev/demo/tow-list
Initial data structure for the second list, derived from the first list with modified names and IDs. This ensures distinct items for the second list.
```json
[
{
"name": "Joao-2",
"id": "1-2"
},
{
"name": "Jean-2",
"id": "2-2"
},
{
"name": "Johanna-2",
"id": "3-2"
},
{
"name": "Juan-2",
"id": "4-2"
}
]
```
--------------------------------
### Function Usage for Two List Drag and Drop
Source: https://vue-draggable-plus.pages.dev/demo/tow-list
Implements drag and drop sorting between two lists using the useDraggable composable function. Ensure the 'group' option is set to enable cross-list interactions.
```html
```
--------------------------------
### Component Usage for Two List Drag and Drop
Source: https://vue-draggable-plus.pages.dev/demo/tow-list
Implements drag and drop sorting between two lists using the VueDraggable component. Configure the 'group' prop to enable cross-list dragging.
```html
{{ item.name }}
{{ item.name }}
```
=== COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.