动态切换网页图标
2022年1月13日小于 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);