bowen
2023-11-02 beed7f2e1172531fe691384a50c8b0457f3a80d8
src/hooks/web/useSortable.ts
@@ -2,14 +2,16 @@
import type { Ref } from 'vue';
import type { Options } from 'sortablejs';
export function useSortable(el: HTMLElement | Ref<HTMLElement>, options?: Options) {
export function useSortable(el?: HTMLElement | Ref<HTMLElement | undefined>, options?: Options) {
  function initSortable() {
    nextTick(async () => {
      el = unref(el);
      if (!el) return;
      const Sortable = (await import('sortablejs')).default;
      Sortable.create(unref(el), {
        animation: 500,
      Sortable.create(el, {
        animation: 100,
        delay: 400,
        delayOnTouchOnly: true,
        ...options,