Vue implements internationalization of web page language switching

Vue implements internationalization of web page language switching

1. Basic steps

1: Install yarn add vue-i18n

Create a new .js file in this path: src/lang/index.js :

2: Import

import VueI18n from 'vue-i18n'

3: Register

import Vue from 'vue'

Vue.use(VueI18n)

4: Instantiation

const i18n = new VueI18n({
	locale:'The current language identifier', // en: English zh: Chinese messages:{
		// Language pack en:{
		home:'home'
		},
		zh:{
		home:'Home'
		}
	}
})

5: Exposed

export default i18n

6: Mount to main.js

import i18n from '@/lang'
new Vue({
i18n
})

Use: <div>{ {$t('home')}}</home>

2. Import element-ui international language configuration in main.js

import i18n from './lang/index'
import ElementUI from 'element-ui'
Vue.use(ElementUI, {
  i18n: (key, value) => i18n.t(key, value)
})

3. Create a new .vue file to switch languages ​​through buttons

Notice:

this.$i18n.locale can get and set the current language and use internationalization in js files

4. To achieve the internationalization of the website menu, you need to introduce it in the routing

After import i18n from '@/lang' i18n.t===this.$t

This concludes this article about Vue's implementation of internationalization of web page languages. I hope it will be helpful for everyone’s study, and I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • The whole process of realizing website internationalization using Vite2 and Vue3
  • Detailed explanation of how Vue uses i18n to achieve internationalization
  • Use vue internationalization i18n to implement multiple language switching functions
  • The international development and implementation process of vue-i18n and element-ui in the vue project
  • Vue uses vue-i18n to implement internationalization code

<<:  Introduction to the Enctype attribute of the Form tag and its application examples

>>:  Detailed explanation of the process of deploying the distributed configuration center Apollo with one click using docker compose

Recommend

Nginx server https configuration method example

Linux: Linux version 3.10.0-123.9.3.el7.x86_64 Ng...

Steps to install Pyenv under Deepin

Preface In the past, I always switched Python ver...

Webpack builds scaffolding to package TypeScript code

Create a folder Directory structure: dabaots Init...

Configure Java development environment in Ubuntu 20.04 LTS

Download the Java Development Kit jdk The downloa...

How to deploy MongoDB container with Docker

Table of contents What is Docker deploy 1. Pull t...

Global call implementation of Vue2.x Picker on mobile terminal

Table of contents What is the Picker component Pr...

MySQL replication table details and example code

MySQL replication table detailed explanation If w...

Detailed explanation of downloading, installing and using nginx server

download http://nginx.org/en/download.html Unzip ...

Detailed explanation of Vue advanced construction properties

Table of contents 1. Directive custom directive 2...

Does the website's text still need to be designed?

Many people may ask, does the text on the website...

Perfect solution to the problem of webpack packaging css background image path

Inside the style tag of the vue component, there ...

Ant designing vue table to achieve a complete example of scalable columns

Perfect solution to the scalable column problem o...

JavaScript realizes the queue structure process

Table of contents 1. Understanding Queues 2. Enca...