Detailed explanation of how to dynamically set the browser title in Vue

Detailed explanation of how to dynamically set the browser title in Vue

nonsense

Usually, the browser title is set like this

But Vue is a single-page application, and the entry file only has one HTML, so only one tag can be set. So here are two commonly used methods to dynamically set browser tags.

text

The first

Use the browser native method document.title

router/index.js

router.beforeEach

//For multi-language projects, import i18n from '@/i18n/index' according to your own project;
 document.title = i18n.t("router." + to.name)
 //Single language project document.title = to.name


The language switching route remains unchanged, so it should be added as well. Single language projects do not need it.

//Multi-language project document.title = i18n.t("router." + to.name)


Completed, recommended, native compatibility is good, no need to download and install other dependent packages

The second

Using plugins

1. Install the plugin

npm install vue-wechat-title --save

2.main.js reference

import VueWechatTitle from 'vue-wechat-title'//Dynamically modify title
Vue.use(VueWechatTitle)

3. Add instructions

//Multi-language project <router-view v-wechat-title="$t('router.' + $route.name)" ></router-view>
 //Single language project <router-view v-wechat-title=" $route.name" ></router-view>

Finished

notes

Note: The value depends on the routing structure of your own project. This demo uses the name value. i18n has a corresponding language package.

You can add a title attribute in the meta object and use to.meta.title outside of it.


Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • javascript modifies the browser title method JS dynamically modifies the browser title
  • How to dynamically change the browser title using JS
  • How to display the current date and time in the browser title bar using JavaScript
  • Tips for modifying browser tab title with JavaScript

<<:  Introduction to the usage of exists and except in SQL Server

>>:  The difference between float and position attributes in CSS layout

Recommend

Introduction to MySQL MHA operation status monitoring

Table of contents 1. Project Description 1.1 Back...

VS2019 connects to mysql8.0 database tutorial with pictures and text

1. First, prepare VS2019 and MySQL database. Both...

How to create a MySQL database and support Chinese characters

Let's first look at the MySQL official docume...

Summary of twelve methods of Vue value transfer

Table of contents 1. From father to son 2. Son to...

Mini Program to implement Token generation and verification

Table of contents process Demo Mini Program Backe...

Mini Program to Implement Simple List Function

This article example shares the specific code of ...

Detailed explanation of virtual DOM and diff algorithm in react

The role of virtual DOM First of all, we need to ...

Detailed explanation of Nginx timed log cutting

Preface By default, Nginx logs are written to a f...

Detailed examples of using JavaScript event delegation (proxy)

Table of contents Introduction Example: Event del...

Vue+Element realizes paging effect

This article example shares the specific code of ...

Linux uses suid vim.basic file to achieve privilege escalation

Reproduce on Kali First set suid permissions for ...

The implementation process of long pressing to identify QR code in WeChat applet

Preface We all know that the QR codes in official...

react-beautiful-dnd implements component drag and drop function

Table of contents 1. Installation 2.APi 3. react-...

Should I use UTF-8 or GB2312 encoding when building a website?

Often when we open foreign websites, garbled char...