update
items cant be moved under eachother, only be moved outside.
using v-model="childs" which is the same array that is used in the v-for gives error that its an object not array, shouldn't the same item that works for v-for also works for the v-model ?
when moving an item from the nested menu to the parent, the parent list doesnt get updated, even though that both are under the same group name, also tried to use :list="$parent.pages" but doesnt work
trying to add an item under nest, makes it disappear
when an item is re-dragged after it was moved out of the nested menu, we get an error and everything stops working
using v-model="childs" which is the same array that is used in the v-for gives error that its an object not array, shouldn't the same item that works for v-for also works for the v-model
@ctf0 v-model should be an array, if it is an object it will (could) not work
okay np, already passed that issue with v-model="childs.children", can u help me with the others as well ? 馃憤
What is the next issue?
@ctf0 , I guess issue like this would be better adressed on stackoverflow once it is not linked to feature or bug on vuedraggable but on its usage.
Could you provide a jsfiddle and step by step scenario?
the reason i made the ticket is because i found lots of closed issues on the same subject, however all of the demos in those tickets have the one or same problems and couldn't find a valid solution for any, specially that the original lib that this package is built upon doesnt have the nesting feature.
and here is a fiddle u made on another ticket, with minor cleanup https://jsfiddle.net/v8gme77z/60/
it have the issues of
Regarding the second problem, you are using incompatinle version of sortable and vuedraggablr. see this fidle: https://jsfiddle.net/dede89/bfksoj5b/
okay, will retry again on my local copy even through its showing a different error.
lots of issues are solved, thanx for the fiddle 馃挭 , now only the adding more nested items issue remains, which i think the problem is
so maybe a fix for that, we would add a new attribute to the option ex. nested: children and now when u try to move an item, draggable will check if the item u are trying to move under have an array = to the one in the option children
children inside the parent object and push the dragged into it.@ctf0
i suppose your problems are related to this one:
https://github.com/SortableJS/Vue.Draggable/issues/193
and
https://github.com/SortableJS/Vue.Draggable#gotchas
for the first link, i already made the recursive comp, check the gif in the main ticket, but the problem is you cant create any more nesting levels other than the one already added, to understand what i mean test with @David-Desmaisons fiddle https://jsfiddle.net/dede89/bfksoj5b/
for the gotchas, i have
.dragArea {
min-height: 35px;
display: block;
}
<draggable class="dragArea">...</draggable>
but nothing new, maybe u mean something else ?
@ctf0

i have no problem with it though.
@ctf0 Do you have a children list in the leaf object?
Without any further information I will close the issue and ask you to post this in stackoverflow.
@VernalVessel could u show me the code for this, or even a fiddle ?
@David-Desmaisons am sorry i dont know what u mean, but this is what i have atm

Share the corresponding tree data please.
@VernalVessel
Can you share your code ?
@ctf0
Have you solve your problem? If so, can you share your code ?
@ChrisShen93 @ctf0 they're separated into many vue files, and i'm afraid it's a bit tough to convert them into fiddles. :(
@VernalVessel
Can we exchange QQ or wechat or other stuff to communicate ?
I sincerely need help ...
My QQ is 2587510238 , please add me if possible
@David-Desmaisons am sorry for the late delay, my connection was down for the last week, so here are the 2 comps i use
<template>
<draggable v-model="pages"
class="dragArea"
:options="{draggable:'.item', group:'pages'}"
:element="'ul'">
<li v-for="item in pages" :key="item.id" class="item">
<div>{{ item.title }}</div>
<template v-if="item.children && item.children.length > 0">
<menu-child :childs="item.children"></menu-child>
</template>
</li>
</draggable>
</template>
<script>
import draggable from 'vuedraggable'
import MenuChild from './_nested.vue'
export default {
props: ['getMenuPages'],
components: {draggable, MenuChild},
data() {
return {
pages: [
{
"id": 2,
"title": "About",
"nests": null,
},
{
"id": 5,
"title": "East Shaylee",
"nests": [{
"id": 6,
"title": "Einoborough",
"nests": [{
"id": 7,
"title": "East Esperanza",
"nests": [{
"id": 8,
"title": "winborough",
"nests": null
}]
}]
}],
},
]
}
},
}
</script>
<template>
<draggable :list="childs"
class="dragArea"
:options="{draggable:'.item', group:'pages'}"
:element="'ul'">
<li v-for="item in childs" :key="item.id" class="item">
<div>{{ item.title }}</div>
<template v-if="item.children && item.children.length > 0">
<menu-child :childs="item.children"></menu-child>
</template>
</li>
</draggable>
</template>
<script>
import draggable from 'vuedraggable'
export default {
name: 'menu-child',
props: ['childs'],
components: {draggable},
}
</script>
@ChrisShen93 sadly still no luck :cry: .
@VernalVessel i believe the components are mostly main and child for recursiveness, or do you need more to get the nesting to work ?
@ctf0
i suppose your problems are related to this one:193
like i have said, your problem is the dragarea's size, you seem to define a min-height for it, while dragarea isn't the 'draggable' component but your nested component, move this class to 'menu-child' component.
actually whether i added the dragArea class or not, nothing changes, i wish you were right but sadly nothing is working.
@David-Desmaisons any news on this ? 馃悎
Hello @ctf0 I need a jsfiddle to work on this to figure out what is the problem. It really seems that this is linked to the usage of draggable and not the compnent itself.
@David-Desmaisons is it possible for u to make a fiddle that works correctly for nesting and i will try to find out the issue with my comps ?
Here we go: https://jsfiddle.net/dede89/bfksoj5b/
thank you, but this is the same as old one, you can't create new levels of nesting, ex.
task 2 - sub task 1 under task 1 - sub task 1This is because this example allows only one level of nesting. You should use a recursive component.
we are going in circles, thanx anyway & apologize for the long ticket.
recursive example: https://jsfiddle.net/dede89/bfksoj5b/9/
@David-Desmaisons fockein awesome, many thanx
Update
i figured out the issue, in order for draggable to be able to add new levels of nesting, u have to have an empty nest item under ur li items <ul class="dragArea"></ul>, which will work as an empty placeholder for draggable to add new items in that place.
in my comp code above the problem was v-if="item.children && item.children.length > 0" which prevent creating unnecessary empty items.
however what should happen is that draggable creates that item on the fly, otherwise we will have an empty space in our list.
old fiddle updated https://jsfiddle.net/bfksoj5b/11/
new "old" problem
https://jsfiddle.net/bfksoj5b/12/
https://jsfiddle.net/bfksoj5b/14/
try to nest task 3 under task 4, the item will disappear
Update 2
fixed, not sure about the fiddle though, but the nested prop have to be an empty array (not null) or draggable wont be able to push into it.
@ctf0 Would it be possible to use your updated fiddle to create an official example for nested draggable tree? It works perfectly however it's slightly hard to find/easy to miss (you need to dig through the github's issues).
@mariuszjamro i feel u, but honestly this was a daunting issue and i would rather not to go through it again.
still. what is the issue u r stuck at atm ?
@ctf0 i don't have an issue any more - made it work based on info in this issue.
Can in submit a PR with draggable tree to the examples/ folder?
will see what i can do
Any update on this? I'm also dealing with the same issue.
@mariuszjamro a PR with this kind of example will be welcome
@David-Desmaisons how can i fix my question like this

I have been try many times and read your documents about it , but no way to fix it.
the same question with this
" in order for draggable to be able to add new levels of nesting, u have to have an empty nest item under ur li items
Most helpful comment
recursive example: https://jsfiddle.net/dede89/bfksoj5b/9/