Ticket Component

This commit is contained in:
2024-10-06 19:30:12 +02:00
parent c050560fba
commit 4a62c7a96b
47 changed files with 365 additions and 219 deletions

View File

@@ -0,0 +1,31 @@
<script setup lang="ts">
import { ModelRef } from 'vue';
const showDialog: ModelRef<boolean> = defineModel()
defineProps({
title: String,
icon: {
type: String
},
subtitle: {
type: String
}
})
</script>
<template>
<v-dialog max-width="1200" v-model="showDialog">
<v-card
:title="title"
:subtitle="subtitle"
:prepend-icon="icon"
>
<slot></slot>
<template #actions>
<slot name="actions"></slot>
</template>
</v-card>
</v-dialog>
</template>