docs(popover): update

This commit is contained in:
Benjamin Canac
2024-08-23 17:22:06 +02:00
parent 9dd9d5126a
commit 7673e51e20
5 changed files with 213 additions and 18 deletions

View File

@@ -1,5 +1,5 @@
<script setup lang="ts">
const open = ref(true)
const open = ref(false)
defineShortcuts({
o: () => open.value = !open.value
@@ -8,6 +8,6 @@ defineShortcuts({
<template>
<UTooltip v-model:open="open" text="Open on GitHub">
<UButton icon="i-simple-icons-github" />
<UButton label="Open" color="gray" variant="subtle" />
</UTooltip>
</template>