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