vue中添加favicon

方法一:(只能使用本地icon)

favicon图片放到根目录文件夹下,然后再index.html中添加:

<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">

方法二:从服务器动态获取图片favicon

在index. html中添加代码:link.href即为favicon的图片链接。

 

<script>
    (function() {
      var link = document.querySelector("link[rel*='icon']") || document.createElement('link');
      link.type = 'image/x-icon';
      link.rel = 'shortcut icon';
      link.href = 'http://www.stackoverflow.com/favicon.ico';
      document.getElementsByTagName('head')[0].appendChild(link);
    })();
  </script>

 

 

 

 

posted @ 2019-12-19 10:38  辰熙ali  阅读(353)  评论(0)    收藏  举报