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,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>