8 lines
124 B
TypeScript
8 lines
124 B
TypeScript
|
|
import type { Directive } from "vue";
|
||
|
|
const vFocus: Directive = {
|
||
|
|
mounted: (el) => el.focus()
|
||
|
|
}
|
||
|
|
export default vFocus
|
||
|
|
|
||
|
|
|