- index.html中一般设置了
<title><%= htmlWebpackPlugin.options.title %></title>
- 不同的Vue页面中,mounted(){}函数中增加标题设置
mounted(){
document.title = "自定义标题";
}
<title><%= htmlWebpackPlugin.options.title %></title>
mounted(){
document.title = "自定义标题";
}