vue修改初始的页面title

vue.config.js


module.exports = {
  // 修改标题
  chainWebpack: (config) => {
    config.plugin("html").tap((args) => {
      args[0].title = "New Name";
      return args;
    });
  },
 // other configs
}

posted @ 2022-03-15 14:47  柯宝宝智商感人  阅读(137)  评论(0编辑  收藏  举报