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