13 lines
281 B
JavaScript
13 lines
281 B
JavaScript
export default ({ router }) => {
|
|
// 路由切换事件处理
|
|
router.beforeEach((to, from, next) => {
|
|
//触发百度的pv统计
|
|
if (typeof _hmt != "undefined") {
|
|
if (to.path) {
|
|
_hmt.push(["_trackPageview", to.fullPath]);
|
|
}
|
|
}
|
|
next();
|
|
});
|
|
};
|