gpt4 book ai didi

vue.js - 视觉 : How to change tab title in Chrome

转载 作者:行者123 更新时间:2023-12-05 08:46:35 25 4
gpt4 key购买 nike

如何更改 Vue.js 中默认的“Webpack App”选项卡标题? enter image description here

最佳答案

在你的 public/index.html 或其他被 html-webpack-plugin 用作模板的 HTML 文件中。找到标题标签并更改它

 <title>Page Title</title>

或者您可以通过从文档 document.title 中获取标题来动态设置页面标题,并在您的组件中更改它,如下面的代码:

<template>
<div id="app"></div>
</template>
<script>
export default {
name: "App",
mounted() {
document.title = "page title";
},};

</script>

关于vue.js - 视觉 : How to change tab title in Chrome,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69484862/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com