feat: i18n

This commit is contained in:
菲鸽
2024-01-29 19:14:01 +08:00
parent 960580fd62
commit 3e25327590
3 changed files with 43 additions and 7 deletions

View File

@@ -6,10 +6,46 @@
}
</route>
<template>{{ $t('app.name') }}</template>
<template>
<view>{{ $t('app.name') }}</view>
<view>切换语言 </view>
<view class="uni-list">
<radio-group @change="radioChange">
<label class="uni-list-cell uni-list-cell-pd" v-for="item in languages" :key="item.value">
<view>
<radio :value="item.value" :checked="item.value === current" />
</view>
<view>{{ item.name }}</view>
</label>
</radio-group>
</view>
<!-- http://localhost:9000/#/pages/index/i18n -->
<button @click="testI18n">测试弹窗</button>
</template>
<script lang="ts" setup>
import { getLocale } from '@/locales/index'
import { testI18n } from '@/utils/index'
testI18n()
const current = ref(getLocale())
const languages = [
{
value: 'zh',
name: '中文',
checked: 'true',
},
{
value: 'en',
name: '英文',
},
]
const radioChange = (evt) => {
// console.log(evt)
current.value = evt.detail.value
// https://uniapp.dcloud.net.cn/api/ui/locale.html#setlocale
uni.setLocale(evt.detail.value)
}
</script>