mirror of
https://github.com/henry4682/finance_app.git
synced 2026-07-16 00:10:00 +00:00
16 lines
229 B
Vue
16 lines
229 B
Vue
<script setup>
|
|
defineProps({
|
|
message: {
|
|
type: String,
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div v-show="message">
|
|
<p class="text-sm text-red-600">
|
|
{{ message }}
|
|
</p>
|
|
</div>
|
|
</template>
|