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