gaoluyang
2026-02-12 1efd1857c521e55a1f7267a53fc2953d24886542
1
2
3
4
5
import type { Directive } from "vue";
const vFocus: Directive = {
    mounted: (el) => el.focus()
}
export default vFocus