Files
Kotyata/apps/client/components/static-error.vue
2026-03-17 13:24:22 +03:00

10 lines
218 B
Vue

<template>
<Transition name="fade">
<UiAlert v-if="staticError" type="negative" :text="staticError.message" />
</Transition>
</template>
<script setup lang="ts">
const staticError = useStaticError()
</script>