Initial commit

This commit is contained in:
2025-08-04 16:33:07 +03:30
commit f798e8e35c
9595 changed files with 1208683 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
<script setup>
import avatar1 from '@images/avatars/avatar-1.png'
const menu = ref(false)
</script>
<template>
<VMenu
v-model="menu"
location="top"
>
<template #activator="{ props }">
<VBtn v-bind="props">
Menu as Popover
</VBtn>
</template>
<VCard max-width="300">
<VList>
<VListItem
:prepend-avatar="avatar1"
title="John Leider"
subtitle="Founder of Vuetify"
class="mx-0"
/>
</VList>
<VDivider />
<VCardText>
Gingerbread bear claw cake. Soufflé candy sesame snaps chocolate ice cream cake.
Dessert candy canes oat cake pudding cupcake. Bear claw sweet wafer bonbon dragée toffee.
</VCardText>
<VCardActions>
<IconBtn icon="tabler-heart" />
<IconBtn icon="tabler-bookmark" />
<IconBtn icon="tabler-thumb-down" />
</VCardActions>
</VCard>
</VMenu>
</template>