Bootstrap

vue如何设置网站标题和logo图标

目录

1、在根目录找到项目index.html文件

2、在index.html 的 title标签中修改名称为自己设计的标题

3、在index.html 的 title标签下的link标签中引入图标

        ①格式为:

        ②注意:


1、在根目录找到项目index.html文件

2、在index.html 的 title标签中修改名称为自己设计的标题

3、在index.html 的 title标签下的link标签中引入图标

        ①格式为:
<link rel="icon" type="image/x-icon" href="static/favicon.ico">
        ②注意:

一定要把图标文件放在static包下,不然可能像我一样一直显示不出来

 

;