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,26 @@
<script setup>
const isSnackbarVisible = ref(false)
</script>
<template>
<VBtn @click="isSnackbarVisible = true">
Open Snackbar
</VBtn>
<!-- Snackbar -->
<VSnackbar
v-model="isSnackbarVisible"
multi-line
>
I am a multi-line snackbar. I can have more than one line. This is another line that is quite long.
<template #actions>
<VBtn
color="error"
@click="isSnackbarVisible = false"
>
Close
</VBtn>
</template>
</VSnackbar>
</template>