UNPKG

v-animate-css

Version:
12 lines (10 loc) 249 B
import animate from './animate'; export default (Vue) => { Vue.directive('animate-css', { mounted: () => {}, beforeMount: (el, binding) => { const { value, modifiers } = binding; animate(el, value, modifiers); }, }); };