mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
29 lines
460 B
Vue
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>
|