UNPKG

mine-h5-ui

Version:

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

11 lines (10 loc) 293 B
import { USEHandler } from './types'; import { ModelRef, Ref } from 'vue'; /** * 操作 */ export declare const useHandler: ({ props, emit, isChecked }: USEHandler.Option) => { isChecked: ModelRef<boolean>; iconName: Ref<string, string>; handleClick: (e: MouseEvent) => void; };