Files
chore/frontend/vue-app/src/components/shared/SuccessMessage.vue
Ryan Kegel a0a059472b
Some checks failed
Gitea Actions Demo / build-and-push (push) Failing after 6s
Moved things around
2026-01-21 17:18:58 -05:00

7 lines
178 B
Vue

<template>
<div v-if="message" class="success-message" aria-live="polite">{{ message }}</div>
</template>
<script setup lang="ts">
defineProps<{ message: string }>()
</script>