提交 7ca75741 编写于 作者: D DCloud_LXH

fix: navbar 滚动时同步 sidebar、toc 同步高度错误

上级 27b0f28b
......@@ -166,9 +166,10 @@ export default {
},
fixedSideBarHeight () {
if(!os.pc) return
const scrollTop = document.documentElement.scrollTop || document.body.scrollTop;
this.navbarHeight = this.navbar.clientHeight
this.subNavBarHeight = this.subNavBar.clientHeight
const setHeight = this.fixedNavbar ? this.subNavBarHeight : this.navbarHeight
const setHeight = !!scrollTop || this.fixedNavbar ? this.subNavBarHeight : this.navbarHeight
this.sideBar.style.top = `${setHeight + 1}px`
this.vuepressToc.style.top = `${setHeight + 1}px`
},
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册