vuestic-ui
Version:
Vue 3 UI Framework
22 lines (21 loc) • 323 B
JavaScript
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