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
Logo

前往低代码交流专区

更多推荐