UNPKG

mine-h5-ui

Version:

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

38 lines (37 loc) 551 B
import { ModelRef } from 'vue'; /** * emits */ export interface Emits { (event: 'cancel'): void; } /** * props */ export interface Props { /** * 是否显示模态框 */ modal?: boolean; /** * 弹出位置 */ position?: string; /** * 是否显示关闭图标 */ closeable?: boolean; /** * 倒角数值 */ radius?: string; } /** * useMask */ export declare namespace USEMask { interface Option { emit: Emits; visibleModel: ModelRef<boolean>; } }