first commit
This commit is contained in:
@@ -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>
|
Reference in New Issue
Block a user