Bootstrap

UNIAPP_在js文件中使用i18n国际化

导入

import { initVueI18n } from '@dcloudio/uni-i18n'  
import messages from '@/locale/index' 
const { t } = initVueI18n(messages)  

使用

t('config.request.i001')

.

;