mirror of
https://github.com/ArthurDanjou/artchat.git
synced 2026-01-14 15:54:03 +01:00
12 lines
186 B
Vue
12 lines
186 B
Vue
<script setup lang="ts">
|
||
const { t, locale } = useI18n({ useScope: 'global' })
|
||
</script>
|
||
|
||
<template>
|
||
<h3
|
||
v-if="locale !== 'en'"
|
||
>
|
||
⚠️ {{ t('alert') }}
|
||
</h3>
|
||
</template>
|