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