通用评论

utils.js 162B

123456
  1. /**
  2. * 575: 为了和media query中的判断保持一致
  3. */
  4. export const isMobile =
  5. typeof window.orientation === "number" && document.body.offsetWidth < 575;