diff --git a/src/vue/types.ts b/src/vue/types.ts index 5303966..df38474 100644 --- a/src/vue/types.ts +++ b/src/vue/types.ts @@ -1,10 +1,10 @@ -import type { Ref } from "vue"; +import type { Ref, ShallowRef } from "vue"; import type { ParentConfig } from "../types"; -export type VueElement = HTMLElement | Ref; +export type VueElement = HTMLElement | Ref; export interface VueDragAndDropData extends VueParentConfig { - parent: HTMLElement | Ref; + parent: HTMLElement | ShallowRef; values: Ref> | Array; }