Is there a way to expand the Vue.Draggable drop zone to outside the draggable custom tag? Is there a way to expand the Vue.Draggable drop zone to outside the draggable custom tag? vue.js vue.js

Is there a way to expand the Vue.Draggable drop zone to outside the draggable custom tag?


Setting :empty-insert-threshhold="100" will increase the drop radius to make it easier to drop items into a list.

    <draggable      tag="ol"      :empty-insert-threshhold="500"      v-model="list"     ...    >...</draggable>