Skip to content

Commit

Permalink
fix(enhanced-readabilities): fix hover for tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
nekomeowww committed Sep 17, 2023
1 parent 1bb09cd commit 0c75ba8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ const emits = defineEmits<{
}>()
const menuTitleElementRef = toRef(props, 'menuTitleElementRef')
const helpElementRef = ref<HTMLSpanElement>()
const popupElementRef = ref<HTMLDivElement>()
const mounted = useMounted()
const { isOutside } = useMouseInElement(menuTitleElementRef)
const { isOutside } = useMouseInElement(helpElementRef)
const bounding = useElementBounding(menuTitleElementRef)
const popupBounding = useElementBounding(popupElementRef)
Expand Down

0 comments on commit 0c75ba8

Please sign in to comment.