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