getElementFromVueRef
Gets an Element a ref, provided it is defined and not an array.
function getElementFromVueRef(ref: unknown): Element | never;
ref- The ref to extract theElementfrom.
Returns an Element if ref is Vue or Element.
Throws an error if an Element could not be found.