mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
2280dd5c5e
- Using `defineComponent` to wrap component up for Volar support, this should close #841 - Also made changes for some typing - Removed `merge.ts` since `Object.assign` are now supported natively
26 lines
657 B
TypeScript
26 lines
657 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
|