mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
55348b30b6
* style: use prettier * style: just prettier format, no code changes * style: eslint fix object-shorthand, prefer-const * style: fix no-void * style: no-console
27 lines
660 B
TypeScript
27 lines
660 B
TypeScript
import { on, once } from '@element-plus/utils/dom'
|
|
|
|
import type { ObjectDirective } from 'vue'
|
|
|
|
export default {
|
|
beforeMount(el, binding) {
|
|
let interval = null
|
|
let startTime: number
|
|
const handler = () => binding.value && binding.value()
|
|
const clear = () => {
|
|
if (Date.now() - startTime < 100) {
|
|
handler()
|
|
}
|
|
clearInterval(interval)
|
|
interval = null
|
|
}
|
|
|
|
on(el, 'mousedown', (e) => {
|
|
if ((e as any).button !== 0) return
|
|
startTime = Date.now()
|
|
once(document as any, 'mouseup', clear)
|
|
clearInterval(interval)
|
|
interval = setInterval(handler, 100)
|
|
})
|
|
},
|
|
} as ObjectDirective
|