mirror of
https://github.com/koel/koel
synced 2024-11-15 08:57:16 +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()
|
|
}
|
|
}
|