[web-src] Update passing options to vue-draggable

Old way to pass options is deprecated
This commit is contained in:
chme 2019-06-15 13:12:04 +02:00
parent acaf3d01f7
commit 9b90e0d376

View File

@ -47,7 +47,7 @@
</div>
</template>
<template slot="content">
<draggable v-model="queue_items" :options="{handle:'.handle'}" @end="move_item">
<draggable v-model="queue_items" handle=".handle" @end="move_item">
<list-item-queue-item v-for="(item, index) in queue_items"
:key="item.id" :item="item" :position="index"
:current_position="current_position"