From 7b3d6636f4b19c9d36ddda85522577f519026c83 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Sat, 9 Mar 2024 16:35:24 +0100 Subject: [PATCH] chore(Tooltip): update --- src/runtime/components/Tooltip.vue | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/runtime/components/Tooltip.vue b/src/runtime/components/Tooltip.vue index 7c0c796b..615f9997 100644 --- a/src/runtime/components/Tooltip.vue +++ b/src/runtime/components/Tooltip.vue @@ -30,12 +30,9 @@ import { reactivePick } from '@vueuse/core' defineOptions({ inheritAttrs: false }) const props = withDefaults(defineProps(), { - content: undefined, side: 'bottom', delayDuration: 0, - sideOffset: 8, - class: undefined, - ui: undefined + sideOffset: 8 }) const emits = defineEmits() defineSlots()