//与vue2一致
<div >
{{$t("back")}}
</div>
import { ref,getCurrentInstance } from "vue";
const _this = getCurrentInstance().appContext.config.globalProperties
// 此处可打印_this查看是否存在$t方法 如果$t方法不存在
//检查一下i18n配置globalInjection: true是否发开如果打开了仍无效 查看下方代码
_this.$t("game.INSTALL")
// 此段代码写入main.js中
app.config.globalProperties.$t = i18n.global.t