PC端记录

100 阅读1分钟

监听窗口变化

window.onresize = () => {
  if (document.body.clientWidth <= 1400) {
    this.hiddenHelp = true
  } else {
    this.hiddenHelp = false
  }
}