NuxtN
Nuxt14mo ago
Viridian

NuxtUI Tooltip/Popover not rendering on live website

I'm using NuxtUI's UTooltip/UPopover elements to render information on my website:

<UTooltip :ui="{ base: 'h-fit overflow-visible whitespace-normal' }" :popper="{ placement: 'top' }"
        text="...">
        <UIcon name="mdi:information-variant-circle-outline" class="w-8 h-8 text-es-turqoise-600" />
      </UTooltip>


However, for some reason, both the Tooltip and Popover elements do not render the actual tooltips/popovers when I hover over them with my mouse. On my local environment, this works.

Looking into the inspector, I was able to see this difference (see images).

The local environment has the v-if (which is part of the component itself), but the website on production doesn't.

What's causing this?
image.png
image.png
Was this page helpful?