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