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