chenhj
2026-04-24 aeec3a510a8d41a6843fd9875a5d49c654ac2412
1
2
3
4
5
import type { Directive } from "vue";
const vFocus: Directive = {
    mounted: (el) => el.focus()
}
export default vFocus