在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>
评论区