[Vuejs]-How with Vue.Draggable make not to sort items inside 1 panel?

0👍

On the Github page there is a link for all sortable option https://github.com/SortableJS/Vue.Draggable#all-sortable-options. And you obtain this

Import into your project:

// Default SortableJS
import Sortable from "sortablejs";
import { Sortable, MultiDrag, Swap, OnSpill, AutoScroll } from "sortablejs";

So I think you just have to choose manually the options ( import{...} ) that you want

Leave a comment