mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
22 lines (21 loc) • 350 B
TypeScript
import { ModelRef } from 'vue';
/**
* emits
*/
export interface Emits {
(event: 'change', value: string | number): void;
}
/**
* props
*/
export interface Props {
}
/**
* useInitSlots
*/
export declare namespace USEInitSlots {
interface Option {
emit: Emits;
currentValue: ModelRef<string | number | undefined>;
}
}