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