(elRef: MaybeComputedElementRef<T>)
| 14 | * @param elRef |
| 15 | */ |
| 16 | export function unrefElement<T extends MaybeElement>(elRef: MaybeComputedElementRef<T>): UnRefElementReturn<T> { |
| 17 | const plain = toValue(elRef) |
| 18 | return (plain as VueInstance)?.$el ?? plain |
| 19 | } |
no outgoing calls