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