Appearance
锁定 body 滚动。
import { useScrollLock } from '@base-web-kits/base-tools-vue'; import { ref } from 'vue'; const el = ref<HTMLElement | null>(document.body); const isLocked = useScrollLock(el); isLocked.value = true; // body scroll is locked
VueUse