vue3获取屏幕当前宽度

    const screenWidth = ref(document.body.clientWidth);
    window.onresize = () => {
      //屏幕尺寸变化就重新赋值   
      return (() => {
        screenWidth.value = document.body.clientWidth
      })()
    }

你可能感兴趣的:(前端,javascript,html)