mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
639 B
639 B
Composables
Intro
Vant provide some built-in composition APIs, you can directly use these APIs for development.
Demo
import { useWindowSize } from '@vant/use';
const { width, height } = useWindowSize();
console.log(width.value); // -> window width
console.log(height.value); // -> window height
API List
Name | Description |
---|---|
useClickAway | Triggers a callback when user clicks outside of the target element |
useCountDown | Used to manage the countdown |
useToggle | Used to switch between true and false |