koel/resources/assets/js/directives/focus.js
2016-11-26 10:25:35 +07:00

8 lines
151 B
JavaScript

/**
* A simple directive to set focus into an input field when it's shown.
*/
export const focusDirective = {
inserted (el) {
el.focus()
}
}