first commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<script setup>
|
||||
const isSnackbarVisible = ref(false)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<VBtn @click="isSnackbarVisible = true">
|
||||
Open Snackbar
|
||||
</VBtn>
|
||||
|
||||
<!-- SnackBar -->
|
||||
<VSnackbar v-model="isSnackbarVisible">
|
||||
Hello, I'm a snackbar
|
||||
</VSnackbar>
|
||||
</template>
|
Reference in New Issue
Block a user