vue常用配置

修改title
vue.config.js

 chainWebpack: config =>{
    config.plugin('html')
      .tap(args => {
        args[0].title = "人民法院律师服务平台";
        return args;
      })
  }

 

posted @ 2020-11-24 10:37  丁少华  阅读(398)  评论(0)    收藏  举报