侧边栏壁纸
博主头像
简单的博客博主等级

种瓜得瓜,种豆得豆。

  • 累计撰写 15 篇文章
  • 累计创建 8 个标签
  • 累计收到 2 条评论

目 录CONTENT

文章目录

Vuejs框架中设置Safari浏览器添加到主屏幕图标控制

简单
2024-09-04 / 0 评论 / 0 点赞 / 3 阅读 / 506 字

在index.html中留下link

<link rel="apple-touch-icon" id="dynamic-favicon" href="">

在 App.vue 中获取元素并设置 href值

<!-- App.vue -->
<script>
//...
 mounted() {
  const appleTouchIconLinkEl = document.getElementById('dynamic-favicon');
  let logoPath;
  logoPath = require(`@/path/to/your/logo.png`);
  favicon.setAttribute('href', logoPath); 	
 }

//...
</script>

0

评论区