vue 监听窗口变化

从入门到放弃 / 2023-08-28 / 原文

mounted() {
      window.onresize = () => {
        return (() => {
          this.$nextTick(() => {
            if(document.documentElement.clientWidth <= 1000){
              this.mode = "vertical"
            }else{
              this.mode = "horizontal"
            }
          })
        })()
      }
}