gpt4 book ai didi

vue.js - 选择元素以使用 nuxt-i18n 在 nuxt 中获取语言环境

转载 作者:行者123 更新时间:2023-12-01 03:12:08 28 4
gpt4 key购买 nike

我使用 nuxt-i18n nuxt-i18n documentation link像这样在我的网站上获得不同的语言环境:

<nuxt-link v-for="locale in $i18n.locales"
v-if="locale.code !== $i18n.locale"
:key="locale.code"
:to="switchLocalePath(locale.code)"
class="locales white--text"
>{{ locale.code }}
</nuxt-link>

它工作得很好,但我想将此代码转换为在选择元素中呈现:
<select v-model="selected" class="locales white--text" @change=" ??? ">
<option disabled value="">{{ $i18n.locale }}</option>
<option v-for="locale in $i18n.locales" :key="locale.code">{{ locale.code }}</option>
</select>

Locales 字符串看起来不错,但我没有找到在更改时启动 switchLocalePath 函数的解决方案。使用 nuxt (vue.js) 有没有合适的方法来做到这一点?

最佳答案

在这里,下拉列表和 onChange 方法:

 <select v-model="selectedValue" @change="onChange(selectedValue)">
<option disabled value>Please select one</option>
<option
v-for="(locale, index) in $i18n.locales"
:key="index"
:value="locale.code"
>{{locale.name}}</option>
</select>
 methods: {
onChange(event) {
this.$router.replace(this.switchLocalePath(event));
}
}

如果你想检查工作,我已经构建了一个在这里工作的 CodeSandox Nuxt:

https://codesandbox.io/embed/codesandbox-nuxt-1bhug?fontsize=14&hidenavigation=1&theme=dark

关于vue.js - 选择元素以使用 nuxt-i18n 在 nuxt 中获取语言环境,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51405996/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com