UNPKG

@animxyz/vue

Version:

AnimXYZ is a composable animation library that makes your site shine

14 lines (11 loc) 260 B
import clsx from 'clsx' function updateDirective(el, { value }) { el.setAttribute('xyz', clsx(el._xyzOriginal, value)) } export default { bind(el) { el._xyzOriginal = el.getAttribute('xyz') updateDirective(...arguments) }, update: updateDirective, }