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. textThe first Use the browser native method router/index.js //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 secondUsing plugins 1. Install the pluginnpm install vue-wechat-title --save 2.main.js referenceimport 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 SummarizeThis 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:
|
<<: Introduction to the usage of exists and except in SQL Server
>>: The difference between float and position attributes in CSS layout
Table of contents 1. Project Description 1.1 Back...
1. First, prepare VS2019 and MySQL database. Both...
Let's first look at the MySQL official docume...
Table of contents 1. From father to son 2. Son to...
Table of contents process Demo Mini Program Backe...
HTML <div class="spinner"></di...
This article example shares the specific code of ...
The role of virtual DOM First of all, we need to ...
Preface By default, Nginx logs are written to a f...
Table of contents Introduction Example: Event del...
This article example shares the specific code of ...
Reproduce on Kali First set suid permissions for ...
Preface We all know that the QR codes in official...
Table of contents 1. Installation 2.APi 3. react-...
Often when we open foreign websites, garbled char...