vue 监听窗口变化

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

 

posted @ 2023-08-28 17:19  龙卷风吹毁停车场  阅读(89)  评论(0)    收藏  举报