UNPKG

mine-h5-ui

Version:

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

15 lines (14 loc) 312 B
import { Props, Emits } from './types'; import { ComputedRef } from 'vue'; /** * 操作 */ export declare const useHandle: (emit: Emits) => { onClick: (e: MouseEvent) => void; }; /** * 样式 */ export declare const useStyle: (props: Readonly<Required<Props>>) => { getStyle: ComputedRef<string>; };