mirror of
https://github.com/versia-pub/frontend.git
synced 2026-01-26 04:16:02 +01:00
14 lines
370 B
Vue
14 lines
370 B
Vue
<template>
|
|
<Alert>
|
|
<AlertTitle>{{ m.steep_suave_fish_snap() }}</AlertTitle>
|
|
<AlertDescription>{{ m.muddy_bland_shark_accept() }}</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>
|