UNPKG

@fesjs/fes-design

Version:
8 lines (7 loc) 377 B
import type { ComponentOptions } from 'vue'; /** * 如果传入的值是 Text 对象或 HTMLElement 对象或 SVG 对象,则直接返回; * 如果是 Vue 组件选项对象,则返回它的 DOM 元素; * 如果传入 null 参数,则返回 null。 */ export default function getElementFromVueInstance(val?: HTMLElement | ComponentOptions | Text | SVGElement): any;