欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue3.0修改浏览器title

程序员文章站 2022-07-14 08:07:28
...

静态修改:

vue 在public 文件夹中有一个index.html,直接修改title中的值即可。这是最low的方法。

当然你的项目如果是使用webpack或者是vue-cli创建出来的项目,那么你会在title的地方看到

<title><%= htmlWebpackPlugin.options.title %></title>

 或者

<title><%= webpackConfig.name %></title>

以上两种写法需要在vue.config.js文件中添加代码解决;

第一种:

module.exports = {
   chainWebpack: config =>{
    config.plugin('html')
      .tap(args => {
        args[0].title = "标题";
        return args;
      })
  }
}

第二种:

module.exports = {
   configureWebpack: {
    // provide the app's title in webpack's name field, so that
    // it can be accessed in index.html to inject the correct title.
    name: name,
    resolve: {
      alias: {
        '@': resolve('src')
      }
    }
  }
}

相关标签: vue title