search
HomeWeb Front-endVue.jsHow to achieve multi-language and internationalization in Vue
How to achieve multi-language and internationalization in VueOct 15, 2023 am 08:45 AM
Multi-language: vue multi-language implementationInternationalization: vue international development

How to achieve multi-language and internationalization in Vue

How to achieve multi-language and internationalization in Vue

Introduction:
With the acceleration of globalization and the development of the Internet, more and more Web Applications need to support multiple locales to provide a better user experience. As a modern JavaScript framework, Vue also provides some convenient methods for multi-language and internationalization implementation. This article will introduce how to implement multi-language and internationalization in Vue, and give specific code examples.

1. Internationalization library selection
The first task to achieve multi-language and internationalization in Vue is to choose a suitable internationalization library. Currently, the more commonly used internationalization libraries include vue-i18n and vue-intl.

  1. vue-i18n:
    vue-i18n is an internationalization plug-in for Vue.js. It provides a series of APIs and instructions to facilitate us to achieve multi-language and internationalization in Vue applications. . Has good community support and stable update maintenance.
  2. vue-intl:
    vue-intl is an international plug-in for Vue.js based on Format.js. It provides richer functions and more flexible configuration options. If the project requires more complex internationalization processing, vue-intl is a good choice.

2. Basic configuration and usage
Taking vue-i18n as an example, the following will introduce how to configure and use multi-language and internationalization in Vue.

  1. Installation and configuration:
    First, we need to use npm or yarn to install vue-i18n. In the root directory of the project, execute the following command:

    npm install vue-i18n

    Then, introduce vue-i18n into the main.js file of the project and configure it:

    import Vue from 'vue';
    import VueI18n from 'vue-i18n';
    
    Vue.use(VueI18n);
    
    const i18n = new VueI18n({
      locale: 'zh-CN',
      messages: {
     'zh-CN': require('./locales/zh-CN.json'),
     'en-US': require('./locales/en-US.json'),
      },
    });
    
    new Vue({
      i18n,
    }).$mount('#app');

In the above code, we use the Vue.use() method to register vue-i18n as a Vue plugin. Then, create a VueI18n instance and make some configurations. Among them, locale represents the default locale, and messages represents our language pack.

  1. Creation and use of language packages:
    In the above code, we see the messages object passed in when creating a VueI18n instance. It is a mapping table that contains our language pack. We can store messages objects in separate files, such as zh-CN.json and en-US.json, and introduce them through the require() method. The specific language package content can be defined in the following format:

    // zh-CN.json
    {
      "hello": "你好",
      "world": "世界"
    }
    
    // en-US.json
    {
      "hello": "Hello",
      "world": "World"
    }

    Using multi-language and internationalization in the Vue component, we can display the text content in the language package in the following way:

    <template>
      <div>
     <p>{{ $t('hello') }}</p>
     <p>{{ $t('world') }}</p>
      </div>
    </template>

    In the above code, $t() is a method provided by vue-i18n for translating text. In actual use, we can dynamically switch the language environment according to the user's language preference settings and user selection.

3. Dynamic switching of language environment
In some cases, we may need to dynamically switch the language environment at runtime. vue-i18n provides some methods to achieve this functionality.

  1. Switch locale:
    We can switch the locale in the following ways:

    this.$i18n.locale = 'en-US';

    In the above code, we modify the current locale to ' en-US', which will trigger a re-rendering of the Vue component and display the new language content.

  2. Use the value of the locale language environment:
    We can use this.$i18n.locale in the Vue component to get the value of the current locale.

4. Advanced use of internationalization
In addition to basic text translation, we may also need more complex internationalization processing, such as date formatting, number formatting, currency symbols, etc.

  1. Internationalization of date and time:
    vue-i18n provides date and time formatting functions. We can define the date and time format in the language package and use it in the following ways:

    <template>
      <div>
     <p>{{ $d(new Date(), 'short') }}</p>
     <p>{{ $d(new Date(), 'long') }}</p>
      </div>
    </template>

    In the above code, $d() is a function provided by vue-i18n for formatting date and time. method. Among them, 'short' and 'long' are formatting options for date and time.

  2. Internationalization of numbers and currencies:
    Similarly, we can use vue-i18n to format numbers and currencies. Define the format of numbers and currencies in the language package and use it in the following ways:

    <template>
      <div>
     <p>{{ $n(12345.6789, 'currency') }}</p>
     <p>{{ $n(12345.6789, 'decimal') }}</p>
      </div>
    </template>

    In the above code, $n() is a method provided by vue-i18n for formatting numbers and currencies. Among them, 'currency' is the currency formatting option, and 'decimal' is the decimal formatting option.

Summary:
Multi-language and internationalization are one of the indispensable functions of modern web applications. Vue provides convenient tools and libraries to achieve multi-language and internationalization. In this article, we mainly introduce how to use vue-i18n to achieve multi-language and internationalization, and give some specific code examples. I hope this article can help you implement multi-language and internationalization functions in your Vue project.

The above is the detailed content of How to achieve multi-language and internationalization in Vue. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How to configure the lifecycle hooks of the component in VueHow to configure the lifecycle hooks of the component in VueMar 04, 2025 pm 03:29 PM

This article clarifies the role of export default in Vue.js components, emphasizing that it's solely for exporting, not configuring lifecycle hooks. Lifecycle hooks are defined as methods within the component's options object, their functionality un

How to configure the watch of the component in Vue export defaultHow to configure the watch of the component in Vue export defaultMar 04, 2025 pm 03:30 PM

This article clarifies Vue.js component watch functionality when using export default. It emphasizes efficient watch usage through property-specific watching, judicious deep and immediate option use, and optimized handler functions. Best practices

What is Vuex and how do I use it for state management in Vue applications?What is Vuex and how do I use it for state management in Vue applications?Mar 11, 2025 pm 07:23 PM

This article explains Vuex, a state management library for Vue.js. It details core concepts (state, getters, mutations, actions) and demonstrates usage, emphasizing its benefits for larger projects over simpler alternatives. Debugging and structuri

How do I create and use custom plugins in Vue.js?How do I create and use custom plugins in Vue.js?Mar 14, 2025 pm 07:07 PM

Article discusses creating and using custom Vue.js plugins, including development, integration, and maintenance best practices.

How do I implement advanced routing techniques with Vue Router (dynamic routes, nested routes, route guards)?How do I implement advanced routing techniques with Vue Router (dynamic routes, nested routes, route guards)?Mar 11, 2025 pm 07:22 PM

This article explores advanced Vue Router techniques. It covers dynamic routing (using parameters), nested routes for hierarchical navigation, and route guards for controlling access and data fetching. Best practices for managing complex route conf

What are the key features of Vue.js (Component-Based Architecture, Virtual DOM, Reactive Data Binding)?What are the key features of Vue.js (Component-Based Architecture, Virtual DOM, Reactive Data Binding)?Mar 14, 2025 pm 07:05 PM

Vue.js enhances web development with its Component-Based Architecture, Virtual DOM for performance, and Reactive Data Binding for real-time UI updates.

How do I configure Vue CLI to use different build targets (development, production)?How do I configure Vue CLI to use different build targets (development, production)?Mar 18, 2025 pm 12:34 PM

The article explains how to configure Vue CLI for different build targets, switch environments, optimize production builds, and ensure source maps in development for debugging.

How do I use Vue with Docker for containerized deployment?How do I use Vue with Docker for containerized deployment?Mar 14, 2025 pm 07:00 PM

The article discusses using Vue with Docker for deployment, focusing on setup, optimization, management, and performance monitoring of Vue applications in containers.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)