vue.config.js
chainWebpack: (config) => {
config
.plugin('html')
.tap(args => {
args[0].title = 'xxx管理系统'
return args
})
}
public/index.html
<title>xxx管理系统</title>
效果图

配置Vue应用标题
vue.config.js
chainWebpack: (config) => {
config
.plugin('html')
.tap(args => {
args[0].title = 'xxx管理系统'
return args
})
}
public/index.html
<title>xxx管理系统</title>
效果图


被折叠的 条评论
为什么被折叠?