diff --git a/src/composables/useTippy.ts b/src/composables/useTippy.ts index bf0137c..6916a19 100644 --- a/src/composables/useTippy.ts +++ b/src/composables/useTippy.ts @@ -232,7 +232,8 @@ export function useTippy( if (typeof target === 'function') target = target() if (target) { - instance.value = tippy(target, getProps(opts)) + //@ts-ignore + instance.value = tippy(target?.$el ?? target, getProps(opts)) //@ts-ignore target.$tippy = response }