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