mirror of
https://github.com/koel/koel
synced 2025-01-10 19:58:46 +00:00
10 lines
177 B
JavaScript
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();
|
|
},
|
|
};
|