UNPKG

comic-plus

Version:

<p align="center"> <img width="200px" src="./logo.png"/> </p>

14 lines (12 loc) 345 B
import { ComponentInternalInstance } from 'vue'; /** * @description: createTooltip * @param {Props} * @return {*} */ declare function createTooltip(triggerRef: HTMLElement, content: string, placement: string): { vm: ComponentInternalInstance; destroy: () => void; update: (content: string) => void; }; export { createTooltip };