提交 c0f378e5 编写于 作者: 花裤衩 提交者: Pan

perf[ResizeHandler]: optimized the judgment of isMobile (#1633)

perf[ResizeHandler]: optimized the judgment of isMobile
上级 6b88c41f
import store from '@/store'
const { body } = document
const WIDTH = 1024
const RATIO = 3
const WIDTH = 992 // refer to Bootstrap's responsive design
export default {
watch: {
......@@ -25,7 +24,7 @@ export default {
methods: {
isMobile() {
const rect = body.getBoundingClientRect()
return rect.width - RATIO < WIDTH
return rect.width - 1 < WIDTH
},
resizeHandler() {
if (!document.hidden) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册