Appearance
响应式的滑动检测。
import { useSwipe } from '@base-web-kits/base-tools-vue'; import { ref } from 'vue'; const target = ref<HTMLElement | null>(null); const { direction, isSwiping } = useSwipe(target);
VueUse