first commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<script setup>
|
||||
const isSnackbarVisible = ref(false)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<VBtn @click="isSnackbarVisible = true">
|
||||
Open Snackbar
|
||||
</VBtn>
|
||||
|
||||
<!-- Snackbar -->
|
||||
<VSnackbar
|
||||
v-model="isSnackbarVisible"
|
||||
:timeout="2000"
|
||||
>
|
||||
My timeout is set to 2000.
|
||||
</VSnackbar>
|
||||
</template>
|
Reference in New Issue
Block a user