UNPKG

mine-h5-ui

Version:

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

33 lines (32 loc) 549 B
import { ModelRef } from 'vue'; /** * emits */ export interface Emits { (event: 'cancel'): void; (event: 'sure', currentValue: string[]): void; } /** * props */ export interface Props { /** * 是否显示时间选择器 */ visible?: boolean; /** * 分割符 */ separator?: string; } /** * useBtns */ export declare namespace USEBtns { interface Option { props: Readonly<Required<Props>>; emit: Emits; currentValue: string[]; modelValue: ModelRef<string>; } }