first commit

This commit is contained in:
Inshal
2024-05-29 22:34:28 +05:00
commit e63fc41a20
1470 changed files with 174828 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<script setup>
const items = [
{
title: 'Option 1',
value: 'Option 1',
},
{
title: 'Option 2',
value: 'Option 2',
},
{
title: 'Option 3',
value: 'Option 3',
},
]
</script>
<template>
<VMenu open-on-hover>
<template #activator="{ props }">
<VBtn v-bind="props">
On hover
</VBtn>
</template>
<VList :items="items" />
</VMenu>
</template>