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