unibest/src/pages/index/i18n.vue

16 lines
225 B
Vue
Raw Normal View History

<route lang="json">
{
"style": {
"navigationBarTitleText": "%app.name%"
}
}
</route>
2024-01-29 18:59:17 +08:00
<template>{{ $t('app.name') }}</template>
<script lang="ts" setup>
import { testI18n } from '@/utils/index'
testI18n()
</script>