import { DirectiveFunction } from 'vue' const directive: DirectiveFunction = ({ style }, { value }) => { style.transitionDelay = `${value}ms` style.animationDelay = `${value}ms` } export default directive