gaoluyang
4 天以前 31c32afd520773cba392003c8e2743827fb9ccac
1
2
3
4
5
import type { Directive } from "vue";
const vFocus: Directive = {
    mounted: (el) => el.focus()
}
export default vFocus