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