Vant4 useWindowSize

2023-02-16 17:57 更新

介紹

獲取瀏覽器窗口的視口寬度和高度,并在窗口大小變化時(shí)自動(dòng)更新。

代碼演示

基本用法

import { watch } from 'vue';
import { useWindowSize } from '@vant/use';

export default {
  setup() {
    const { width, height } = useWindowSize();

    console.log(width.value); // -> 窗口寬度
    console.log(height.value); // -> 窗口高度

    watch([width, height], () => {
      console.log('window resized');
    });
  },
};

API

類型定義

function useWindowSize(): {
  width: Ref<number>;
  height: Ref<number>;
};

返回值

參數(shù) 說(shuō)明 類型
width 瀏覽器窗口寬度 Ref<number>
height 瀏覽器窗口高度 Ref<number>


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)