mirror of
https://github.com/ZiuChen/ZiuChen.github.io.git
synced 2025-08-17 23:19:55 +08:00
11 lines
272 B
JavaScript
11 lines
272 B
JavaScript
export default ({ router }) => {
|
|
router.beforeEach((to, from, next) => {
|
|
if (typeof _hmt !== 'undefined') {
|
|
if (to.path) {
|
|
_hmt.push(['_trackPageview', to.fullPath]) // 添加埋点上报
|
|
}
|
|
}
|
|
next() // 执行路由跳转
|
|
})
|
|
}
|