UNPKG

vuetensils

Version:

A 'naked' component library for building accessible, lightweight, on-brand applications.

12 lines (11 loc) 285 B
/** @typedef {import('vue').DirectiveHook} DirectiveHook */ /** @type {DirectiveHook} */ const mounted = (el) => el.focus(); /** * @type {import('vue').Directive & { inserted: import('vue').DirectiveHook}} */ export default { mounted, // TODO: Drop Vue 2 inserted: mounted, };