mirror of
https://github.com/koel/koel
synced 2025-01-10 11:48:49 +00:00
8 lines
151 B
JavaScript
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()
|
|
}
|
|
}
|