9 lines
290 B
JavaScript
9 lines
290 B
JavaScript
export default function ({store}) {
|
|
let footerInfo = store.state.footerInfo
|
|
let link = document.querySelector("link[rel~='icon']") || document.createElement('link')
|
|
link.rel = 'icon'
|
|
link.href = footerInfo.icon
|
|
if (!link.parentElement) {
|
|
document.head.appendChild(link)
|
|
}
|
|
} |