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  智商感人  阅读(147)  评论(0)    收藏  举报