UNPKG

mine-h5-ui

Version:

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

34 lines (33 loc) 543 B
import { ModelRef } from 'vue'; /** * emits */ export interface Emits { (event: 'change', value: string | number): void; } /** * props */ export interface Props { /** * 未聚焦时的颜色 */ color?: string; /** * 聚焦时显示的颜色 */ activeColor?: string; /** * 位移边框颜色 */ lineColor?: string; } /** * useInitSlots */ export declare namespace USEInitSlots { interface Option { emit: Emits; currentValue: ModelRef<string | number>; } }