UNPKG

@inkline/inkline

Version:

Inkline is the intuitive UI Components library that gives you a developer-friendly foundation for building high-quality, accessible, and customizable Vue.js 3 Design Systems.

12 lines (11 loc) 226 B
import { unref } from "vue"; export function extractRefHTMLElement(ref) { const value = unref(ref); if (value) { if (value instanceof HTMLElement) { return value; } return value.$el; } return null; }