element-plus/packages/utils/vue/refs.ts
JeremyWuuuuu 5e68255e11
fix(utils): circular reference (#7057)
- Fix circular referencing in refs.ts
2022-04-08 14:29:52 +08:00

22 lines
534 B
TypeScript

import { isFunction } from '../types'
import type { ComponentPublicInstance, Ref } from 'vue'
export type RefSetter = (
el: Element | ComponentPublicInstance | undefined
) => void
export const composeRefs = (
...refs: (Ref<HTMLElement | undefined> | RefSetter)[]
) => {
return (el: Element | ComponentPublicInstance | null) => {
refs.forEach((ref) => {
if (isFunction(ref)) {
ref(el as Element | ComponentPublicInstance)
} else {
ref.value = el as HTMLElement | undefined
}
})
}
}