vue3中如果获取/使用原型链中的方法
template中
//与vue2一致
<div >
{{$t("back")}}
</div>
setup中
import { ref,getCurrentInstance } from "vue";
const _this = getCurrentInstance().appContext.config.globalProperties
// 此处可打印_this查看是否存在$t方法 如果$t方法不存在
//检查一下i18n配置globalInjection: true是否发开如果打开了仍无效 查看下方代码
_this.$t("game.INSTALL")
手动将$t挂载至全局
// 此段代码写入main.js中
app.config.globalProperties.$t = i18n.global.t
版权声明:本文为lys20000913原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。