vant/docs/markdown/vant-use-intro.en-US.md
2021-06-10 19:45:33 +08:00

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