UNPKG

vuestic-ui

Version:
22 lines (21 loc) 323 B
import { unref } from "vue"; const unwrapEl = (el) => { if (!el) { return; } if (typeof el !== "object") { return; } el = unref(el); if (!el) { return; } if (typeof el.$el !== "undefined") { return el.$el; } return el; }; export { unwrapEl as u }; //# sourceMappingURL=unwrapEl.js.map