koel/resources/assets/js/directives/focus.js
2016-11-23 23:34:44 +08:00

10 lines
177 B
JavaScript

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