搜索...
一个 React 钩子,允许获取聚焦状态。
Paragraph #el-focus-p
#el-focus-p
请查看 API。
点击下方链接跳转 GitHub 查看源代码。
const focus = useFocus(elementTarget, options)
ElementTarget 是一个联合类型,代表可以被定位的各种元素。
ElementTarget
更多详情,请参见 ElementTarget 或 ElementTarget 类型。
export type UseFocusOptions = { /** * 初始聚焦状态 * * @defaultValue false */ initialValue?: boolean }
export type UseFocusReturns = readonly [ /** * 聚焦状态 */ focused: boolean, /** * 聚焦动作 */ actions: { /** * 聚焦目标元素 */ focus(): void /** * 失焦目标元素 */ blur(): void }, ]