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