Using Vue-i18n, how can I not display anything until the message is dynamically loaded?
P粉930534280
P粉930534280 2024-01-10 17:02:40
0
1
368

In our Vue application, we load translations dynamically. Our strings will appear as codes/expressions before they arrive from the server.

Is there some way to tell Vue-i18n to default to blank if no message is loaded? Or can I override something to return an empty string?

P粉930534280
P粉930534280

reply all(1)
P粉087951442

You can achieve this by adding the fallbackLocale attribute in the VueI18n initialization.

As in the demo below, locale ja is not available, therefore, it loads fallbackLocale (I added empty strings in all properties of the default locale). p>

Live Demo:

const messages = {
  en: {
    message: {
      tokyo: 'Tokyo',
      newyork: 'New York',
      london: 'London'
    }
  },
  default: {
    message: {
      tokyo: '',
      newyork: '',
      london: ''
    }
  }
}
const i18n = new VueI18n({
  locale: 'ja',
  fallbackLocale: 'default',
  messages,
})
new Vue({
  i18n,
  data: {cities: ['tokyo', 'newyork', 'london']}
}).$mount('#app')
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.10/vue.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue-i18n/8.14.1/vue-i18n.min.js"></script>
<div id="app">
  <ul>
    <li
      v-for="city in cities"
      :key="city">
      {{city}}: {{ $t("message." + city) }}
    </li>
  </ul>
</div>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!