element-plus/packages/hooks/use-focus/index.ts

10 lines
144 B
TypeScript

import type { Ref } from 'vue'
export default (el: Ref<HTMLElement>) => {
return {
focus: () => {
el.value?.focus?.()
},
}
}