Home > Software design >  Vue: How to change tab title in Chrome
Vue: How to change tab title in Chrome

Time:10-08

How do I change the default "Webpack App" tab title in Vue.js? enter image description here

CodePudding user response:

You will find <title>Webpack App</title> in index.html in most probably public folder. You can change it

CodePudding user response:

you have at least two options:

document.title = 'Your new name'

or in the index.html-file:

<head>
 <title>Your new name</title>
</head>
  • Related