unibest/src/utils/i18n.ts

11 lines
200 B
TypeScript
Raw Normal View History

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