mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
16 lines
389 B
Vue
16 lines
389 B
Vue
<template>
|
|
<Alert>
|
|
<AlertTitle>{{ m.empty_awful_lark_dart() }}</AlertTitle>
|
|
<AlertDescription>
|
|
{{ m.clean_even_mayfly_tap() }}
|
|
</AlertDescription>
|
|
</Alert>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { Alert, AlertDescription, AlertTitle } from "~/components/ui/alert";
|
|
import * as m from "~~/paraglide/messages.js";
|
|
</script>
|
|
|
|
<style></style>
|