mirror of
https://github.com/koel/koel
synced 2024-12-24 11:33:05 +00:00
9 lines
198 B
TypeScript
9 lines
198 B
TypeScript
|
import { Directive } from 'vue'
|
||
|
|
||
|
/**
|
||
|
* A simple directive to set focus into an input field when it's shown.
|
||
|
*/
|
||
|
export const focus: Directive = {
|
||
|
mounted: (el: HTMLElement): void => el.focus()
|
||
|
}
|