UNPKG

mine-h5-ui

Version:

一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍

10 lines (9 loc) 215 B
import { Emits } from './types'; /** * 点击 hook */ export declare const useImgEvent: (emit: Emits) => { onClick: (e: MouseEvent) => void; onLoad: (e: Event) => void; onError: (e: Event) => void; };