Form error message
linter / quality (push) Successful in 4m19s
tests / ci (8.4) (push) Successful in 5m21s
tests / ci (8.5) (push) Successful in 4m34s

This commit is contained in:
2026-09-16 19:27:27 +02:00
parent 6d4fdffee9
commit 9086364db7
2 changed files with 20 additions and 3 deletions
@@ -0,0 +1,10 @@
<script lang="ts" setup>
const props = defineProps<{
error?: string
}>()
</script>
<template>
<div class="text-sm text-red-500">{{ props.error }}</div>
</template>