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
A simple cool effect achieved with CSS3 animation...
Table of contents 1. Open source warehouse manage...
For the beginner's first installation of MySQ...
This article example shares the specific code of ...
As shown below, if it were you, how would you ach...
selinux ( Security-Enhanced Linux) is a Linux ker...
Table of contents The browser's rendering mec...
This article shares with you the solution to the ...
This article mainly introduces the implementation...
I searched the entire web and found all kinds of ...
Overview In a relational database, an index is a ...
As shown below: Mainly execute authorization comm...
The relationship between Javascript and DOM is ve...
Table of contents 1. Technology Selection 2. Tech...
Table of contents Preface Related Materials Vue p...