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