17 lines
279 B
Vue
17 lines
279 B
Vue
|
|
<script lang="ts" setup>
|
||
|
|
defineProps({
|
||
|
|
message: {
|
||
|
|
type: String,
|
||
|
|
default: "",
|
||
|
|
},
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<q-card>
|
||
|
|
<q-card-section align="center">
|
||
|
|
<q-icon name="warning" color="red" size="sm" /> {{ message }}
|
||
|
|
</q-card-section>
|
||
|
|
</q-card>
|
||
|
|
</template>
|