mirror of
https://gitee.com/easii/mapstruct-plus.git
synced 2025-12-07 01:28:31 +08:00
13 lines
313 B
JavaScript
13 lines
313 B
JavaScript
import { defineClientConfig } from '@vuepress/client'
|
|
|
|
export default defineClientConfig({
|
|
enhance({ router }) {
|
|
router.beforeEach((to) => {
|
|
if (typeof _hmt !== "undefined") {
|
|
if (to.path) {
|
|
_hmt.push(["_trackPageview", to.fullPath]);
|
|
}
|
|
}
|
|
})
|
|
},
|
|
}) |