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