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