chore: up

This commit is contained in:
Romain Hamel
2025-03-28 08:58:21 +01:00
parent 664e940098
commit f941df1541
33 changed files with 587 additions and 10 deletions

View File

@@ -0,0 +1,28 @@
<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>