Files
ui/playground/compodium/examples/UContextMenuExample.vue
Romain Hamel f941df1541 chore: up
2025-03-28 08:58:21 +01:00

29 lines
460 B
Vue

<script setup lang="ts">
extendCompodiumMeta({
defaultProps: {
items: [
{
label: 'System',
icon: 'i-lucide-monitor'
},
{
label: 'Light',
icon: 'i-lucide-sun'
},
{
label: 'Dark',
icon: 'i-lucide-moon'
}
]
}
})
</script>
<template>
<UContextMenu>
<Placeholder class="aspect-video w-72">
Right click here
</Placeholder>
</UContextMenu>
</template>