mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
35 lines
845 B
Vue
35 lines
845 B
Vue
<script setup lang="ts">
|
|
import type { ContextMenuItem } from '@nuxt/ui'
|
|
|
|
const loading = ref(true)
|
|
|
|
const items = [
|
|
{
|
|
label: 'Refresh the Page',
|
|
slot: 'refresh' as const
|
|
},
|
|
{
|
|
label: 'Clear Cookies and Refresh'
|
|
},
|
|
{
|
|
label: 'Clear Cache and Refresh'
|
|
}
|
|
] satisfies ContextMenuItem[]
|
|
</script>
|
|
|
|
<template>
|
|
<UContextMenu :items="items" :ui="{ content: 'w-48' }">
|
|
<div class="flex items-center justify-center rounded-md border border-dashed border-accented text-sm aspect-video w-72">
|
|
Right click here
|
|
</div>
|
|
|
|
<template #refresh-label>
|
|
{{ loading ? 'Refreshing...' : 'Refresh the Page' }}
|
|
</template>
|
|
|
|
<template #refresh-trailing>
|
|
<UIcon v-if="loading" name="i-lucide-loader-circle" class="shrink-0 size-5 text-primary animate-spin" />
|
|
</template>
|
|
</UContextMenu>
|
|
</template>
|