9 lines
131 B
Vue
9 lines
131 B
Vue
<template>
|
|
{{ t('app.world') }}
|
|
</template>
|
|
|
|
<script setup>
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
const { t } = useI18n()
|
|
</script> |