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,37 @@
<script setup>
const isDialogVisible = ref(false)
</script>
<template>
<VDialog
v-model="isDialogVisible"
width="500"
>
<!-- Activator -->
<template #activator="{ props }">
<VBtn v-bind="props">
Click Me
</VBtn>
</template>
<!-- Dialog Content -->
<VCard title="Privacy Policy">
<DialogCloseBtn
variant="text"
size="default"
@click="isDialogVisible = false"
/>
<VCardText>
Bear claw pastry cotton candy jelly toffee. Pudding chocolate cake shortbread bonbon biscuit sweet. Lemon drops cupcake muffin brownie fruitcake. Pastry pastry tootsie roll jujubes chocolate cake gummi bears muffin pudding caramels. Jujubes lollipop gummies croissant shortbread. Cupcake dessert marzipan topping gingerbread apple pie chupa chups powder. Cake croissant halvah candy canes gummies.
</VCardText>
<VCardActions>
<VSpacer />
<VBtn @click="isDialogVisible = false">
I accept
</VBtn>
</VCardActions>
</VCard>
</VDialog>
</template>