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