zhangwencui
2026-05-18 62ab1e616510d3444c12f2130448043ccfb12e2a
1
2
3
4
5
import type { Directive } from "vue";
const vFocus: Directive = {
    mounted: (el) => el.focus()
}
export default vFocus