2024-06-16 16:28:08 +08:00
|
|
|
import { t } from '@/locale/index'
|
2024-04-02 21:20:40 +08:00
|
|
|
|
|
|
|
/** 非vue 文件使用 i18n */
|
2025-06-21 17:37:25 +08:00
|
|
|
export function testI18n() {
|
2024-04-02 21:20:40 +08:00
|
|
|
// 下面同样生效
|
|
|
|
uni.showModal({
|
|
|
|
title: 'i18n 测试',
|
|
|
|
content: t('app.name'),
|
|
|
|
})
|
|
|
|
}
|