UTooltip opened by default if its in the #header slot of a UModal, the same tooltip in the #footer slot works as expected
v-model:open="openSettingsModal"
:close="false"
:dismissible="false"
:ui="{
content: 'dark:bg-gray-800 dark:ring-gray-400'
}"
>
<template #header>
<div class="flex w-full justify-between items-center">
<h2>Settings</h2>
<UTooltip
text="Virtual Tour"
:content="{ align: 'center', side: 'top' }"
>
<UButton
v-if="isActive"
icon="mdi:compass-outline"
size="md"
color="notRequested"
variant="solid"
class="hidden md:inline-flex"
@click="something"
/>
</UTooltip>
</div>
</template>
<template #body>
...```