Better validation on text fields, change AlertBanner to Snackbar

This commit is contained in:
2024-09-24 22:18:27 +02:00
parent 3dc4c7af1e
commit 531f964841
19 changed files with 357 additions and 190 deletions

View File

@@ -1,22 +0,0 @@
<script setup lang="ts">
import { useFeedbackStore } from '@/data/stores/feedbackStore';
const feedbackStore = useFeedbackStore()
</script>
<template>
<v-expand-transition>
<v-row v-if="feedbackStore.showBanner">
<v-col>
<v-alert
v-model="feedbackStore.showBanner"
:color="feedbackStore.color"
:icon="feedbackStore.icon"
closable
>
{{ feedbackStore.title }}
</v-alert>
</v-col>
</v-row>
</v-expand-transition>
</template>