mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
20 lines
521 B
TypeScript
20 lines
521 B
TypeScript
import { onBeforeUnmount, onMounted } from 'vue'
|
|
import { off, on } from '@element-plus/utils'
|
|
import { EVENT_CODE } from '@element-plus/constants'
|
|
|
|
export const useEscapeKeydown = (handler?: (e: KeyboardEvent) => void) => {
|
|
const cachedHandler = (e: Event) => {
|
|
const event = e as KeyboardEvent
|
|
if (event.key === EVENT_CODE.esc) {
|
|
handler?.(event)
|
|
}
|
|
}
|
|
onMounted(() => {
|
|
on(document, 'keydown', cachedHandler)
|
|
})
|
|
|
|
onBeforeUnmount(() => {
|
|
off(document, 'keydown', cachedHandler)
|
|
})
|
|
}
|