无意中在网上看见一个图标描边动画效果,研究一下,写下博客方便以后回顾
2023年4月24日大约 1 分钟
//如果在vue项目中,在App.vue下的 created() 中输入
var link =
document.querySelector("link[rel*='icon']") || document.createElement("link");
link.type = "image/x-icon";
link.rel = "shortcut icon";
link.href = this.iconUrl; //icon图标
document.getElementsByTagName("head")[0].appendChild(link);