diff --git a/packages/oruga-next/src/components/tooltip/Tooltip.vue b/packages/oruga-next/src/components/tooltip/Tooltip.vue index 22642d230..cc704a19f 100644 --- a/packages/oruga-next/src/components/tooltip/Tooltip.vue +++ b/packages/oruga-next/src/components/tooltip/Tooltip.vue @@ -181,14 +181,9 @@ const autoPosition = ref(props.position); /** update autoPosition on prop change */ watch( () => props.position, - (v) => { - autoPosition.value = v; - console.log(v); - }, + (v) => autoPosition.value = v, ); -watch(autoPosition, (v) => console.log(v)); - // --- Event Handler --- const contentRef = ref();