koel/resources/assets/js/directives/focus.js

14 lines
267 B
JavaScript

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