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