修复异常

This commit is contained in:
yubaolee 2024-06-19 20:43:42 +08:00
parent 00cbe87ef5
commit cdc4f60c71
2 changed files with 29 additions and 9 deletions

View File

@ -1,20 +1,12 @@
/*
* @Author: yubaolee <yubaolee@163.com> | ahfu~ <954478625@qq.com>
* @Date: 2023-08-12 10:48:24
* @LastEditTime: 2024-06-19 20:31:55
* @LastEditTime: 2024-06-19 20:42:17
* @Description:
* @
* @Copyright (c) 2023 by yubaolee | ahfu~ , All Rights Reserved.
*/
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?93a7b9a145222f9b7109d643a0c58f8d";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
module.exports = {
title: 'OpenAuth.Net',
description: '最好用的.net权限工作流框架,最好用的.net vue前后分离框架',

View File

@ -0,0 +1,28 @@
/*
* @Author: yubaolee <yubaolee@163.com> | ahfu~ <954478625@qq.com>
* @Date: 2024-06-19 20:41:42
* @LastEditTime: 2024-06-19 20:42:39
* @Description:
* @
* @Copyright (c) 2024 by yubaolee | ahfu~ , All Rights Reserved.
*/
// .vuepress/enhanceApp.js
export default ({ router }) => {
if (process.env.NODE_ENV === 'production' && typeof window !== 'undefined') {
// 百度统计代码
var _hmt = _hmt || []
;(function () {
var hm = document.createElement('script')
hm.src = 'https://hm.baidu.com/hm.js?93a7b9a145222f9b7109d643a0c58f8d'
var s = document.getElementsByTagName('script')[0]
s.parentNode.insertBefore(hm, s)
})()
// 路由切换时触发百度统计
router.afterEach(function (to) {
if (window._hmt) {
window._hmt.push(['_trackPageview', to.fullPath])
}
})
}
}