mirror of
https://github.com/koel/koel
synced 2024-12-24 03:23:06 +00:00
5 lines
118 B
TypeScript
5 lines
118 B
TypeScript
import type { Directive } from 'vue'
|
|
|
|
export const focus: Directive = {
|
|
mounted: (el: HTMLElement) => el.focus(),
|
|
}
|