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