Appearance
响应式的 Web Animations API。
import { useAnimate } from '@base-web-kits/base-tools-vue'; import { ref } from 'vue'; const el = ref(null); const { play, pause } = useAnimate(el, { transform: 'rotate(360deg)' }, 1000);
VueUse