You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
531 B
23 lines
531 B
import { router } from '@/router' |
|
|
|
// 用于 router push |
|
window._hmt = window._hmt || [] |
|
// HM_ID |
|
const HM_ID = import.meta.env.VITE_APP_BAIDU_CODE |
|
;(function () { |
|
// 有值的时候,才开启 |
|
if (!HM_ID) { |
|
return |
|
} |
|
const hm = document.createElement('script') |
|
hm.src = 'https://hm.baidu.com/hm.js?' + HM_ID |
|
const s = document.getElementsByTagName('script')[0] |
|
s.parentNode.insertBefore(hm, s) |
|
})() |
|
|
|
router.afterEach(function (to) { |
|
if (!HM_ID) { |
|
return |
|
} |
|
_hmt.push(['_trackPageview', to.fullPath]) |
|
})
|
|
|