# vuepress常见问题
vuepress常见问题
# 部署之后中文路径刷新跳转到首页
由于打包之后页面文件名乱码,导致找不到页面
检查服务器dist文件夹查看中文文件名是否乱码
如有乱码,请直接上传文件夹,不要使用ZIP解压
如无法解决,请尝试一下方法
在.vuepress新建enhanceApp.js
加入以下代码
import Router from 'vue-router' export default ({ router }) => { function decode (str) { try { console.log(decodeURIComponent(str)); console.log(process.env.NODE_ENV); return decodeURIComponent(str) } catch (err) { if (process.env.NODE_ENV !== 'production') { warn(false, ("Error decoding \"" + str + "\". Leaving it intact.")); } } return str } const VueRouterMatch = Router.prototype.match Router.prototype.match = function match (raw, currentRoute, redirectedFrom) { if (typeof raw === 'string') { raw = decode(raw) } return VueRouterMatch.call(this, raw, currentRoute, redirectedFrom) } }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# 无法从URL地址直接跳转锚点
- 修改node_modules@vuepress\theme-default\layouts\Layout.vue
- 加入以下代码
mounted() {
this.$router.afterEach(() => {
this.isSidebarOpen = false;
});
const hash = document.location.hash;
if (hash.length > 1) {
setTimeout(() => {
const id = decodeURIComponent(hash.substring(1));
const element = document.getElementById(id);
if (element) element.scrollIntoView();
}, 1000);
}
},
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
# 如何在md文件中使用element-ui
进入vuepress根目录,执行命令
npm install element-ui
1接下来需要修改用于客户端应用增强的
docs/.vuepress/enhanceApp.js
文件import Element from 'element-ui'; import 'element-ui/lib/theme-chalk/index.css'; export default ({ Vue, options, router }) => { Vue.use(Element); };
1
2
3
4
5
6
如出现报错Cannot find module ‘core-js/library/fn/object/assign
安装依赖
npm install async-validator@1.11.5
1
# 滑动内容左侧导航栏未进行跟随
修改源码node_modules@vuepress\plugin-active-header-links\clientRootMixin.js
/* global AHL_SIDEBAR_LINK_SELECTOR, AHL_HEADER_ANCHOR_SELECTOR */
import debounce from 'lodash.debounce'
export default {
mounted () {
this.activationLink()
this.isInViewPortOfOne()
window.addEventListener('scroll', this.onScroll)
},
updated: function () {
this.isInViewPortOfOne()
},
methods: {
activationLink() {
const subtitles = [].slice.call(document.querySelectorAll(AHL_SIDEBAR_LINK_SELECTOR))
.filter(subtitle => decodeURIComponent(this.$route.hash) == decodeURIComponent(subtitle.hash))
if (subtitles == null || subtitles.length < 1 || subtitles[0].offsetTop == undefined|| location.hash == "") return
subtitles[0].click()
},
isInViewPortOfOne() {
let siderbarScroll = document.getElementsByClassName("sidebar")[0]
let el = document.getElementsByClassName("active sidebar-link")[1]
if (el == null || el == undefined || el.offsetTop == undefined) {
el = document.getElementsByClassName("active sidebar-link")[0]
}
if (el == null || el == undefined || el.offsetTop == undefined) return
const viewPortHeight = siderbarScroll.clientHeight || window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight
let offsetTop = el.offsetTop
let offsetBottom = el.offsetTop + el.offsetHeight
let scrollTop = siderbarScroll.scrollTop
let bottomVisible = (offsetBottom <= viewPortHeight + scrollTop)
if (!bottomVisible) {
siderbarScroll.scrollTop = (offsetBottom + 5 - viewPortHeight)
}
let topVisible = (offsetTop >= scrollTop)
if (!topVisible) {
siderbarScroll.scrollTop = (offsetTop - 5)
}
},
onScroll: debounce(function () {
this.setActiveHash()
}, 300),
setActiveHash () {
const sidebarLinks = [].slice.call(document.querySelectorAll(AHL_SIDEBAR_LINK_SELECTOR))
const anchors = [].slice.call(document.querySelectorAll(AHL_HEADER_ANCHOR_SELECTOR))
.filter(anchor => sidebarLinks.some(sidebarLink => sidebarLink.hash === anchor.hash))
const scrollTop = Math.max(
window.pageYOffset,
document.documentElement.scrollTop,
document.body.scrollTop
)
const scrollHeight = Math.max(
document.documentElement.scrollHeight,
document.body.scrollHeight
)
const bottomY = window.innerHeight + scrollTop
for (let i = 0; i < anchors.length; i++) {
const anchor = anchors[i]
const nextAnchor = anchors[i + 1]
const isActive = i === 0 && scrollTop === 0
|| (scrollTop >= anchor.parentElement.offsetTop + 10
&& (!nextAnchor || scrollTop < nextAnchor.parentElement.offsetTop - 10))
const routeHash = decodeURIComponent(this.$route.hash)
if (isActive && routeHash !== decodeURIComponent(anchor.hash)) {
const activeAnchor = anchor
// check if anchor is at the bottom of the page to keep $route.hash consistent
if (bottomY === scrollHeight) {
for (let j = i + 1; j < anchors.length; j++) {
if (routeHash === decodeURIComponent(anchors[j].hash)) {
return
}
}
}
this.$vuepress.$set('disableScrollBehavior', true)
this.$router.replace(decodeURIComponent(activeAnchor.hash), () => {
// execute after scrollBehavior handler.
this.$nextTick(() => {
this.$vuepress.$set('disableScrollBehavior', false)
})
})
return
}
}
}
},
beforeDestroy () {
window.removeEventListener('scroll', this.onScroll)
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102