I just wanted to know if it's possible to trigger the drag event just in a certain area in the list item. Cause if the list is 100% of the width of a touch screen it's getting hard to scroll.
See option "handle" for sortable https://github.com/RubaXa/Sortable#options
worked out thanks. just added and works fine.
<draggable v-model="myArray" :options="{handle:'.area'}" @start="drag=true" @end="drag=false">
<div v-for="element in myArray">{{element.name}}</div>
</draggable>
I want to drag only specific content within div. Is there any way to do this using :options or any other way?
can we pass multiple properties in :options ?
@patpaskoch thanks for the snippet
Most helpful comment
worked out thanks. just added and works fine.