LoginSignup
3
3

More than 3 years have passed since last update.

Vueでタブに表示されているタイトルをデフォルトから変更する

Posted at

やりたいこと

chromeの上部に表示されているタイトルを変更したい
スクリーンショット 2020-11-23 10.34.19.png

環境情報

  • vue
    • 2.6.12

index.htmlを確認

index.htmlに定義があるので確認してみる
titleタブで表示されている内容が htmlWebpackPlugin.options.title となっている

htmlWebpackPlugin.options.title の値を定義するには、 vue.config.js を編集したら良い
※ vue cliでプロジェクトを作成

vue.config.jsを編集

以下の様に編集

module.exports = {
  pages: {
    index: {
      entry: "src/main.js",
      title: "ああああ"
    }
  }
}

無事変わりました
スクリーンショット 2020-11-24 20.40.24.png

参考

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3