<draggable :list="people" @start="drag=true" @end="drag=false" :handle="'.handle'">
Handle doesn't seem to be supported
use:
<draggable :list="people" @start="drag=true" @end="drag=false" :options="'{handle:'.handle'}'">
Thank you for the reply, you're awesome! The correct format is slightly different:
:options="{handle:'.handle'}"
this should really be part of documentation, not buried in closed issues
@andreixk , this is part of the documentation in: option prop
I didn't see the external link, my mistake.
Most helpful comment
Thank you for the reply, you're awesome! The correct format is slightly different:
:options="{handle:'.handle'}"