UNPKG

sard-uniapp

Version:

sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库

28 lines (27 loc) 724 B
import { type StyleValue } from 'vue'; import { type DefaultProps } from '../config'; export interface RateProps { rootStyle?: StyleValue; rootClass?: string; modelValue?: number; allowHalf?: boolean; clearable?: boolean; count?: number; size?: string; gap?: string; iconFamily?: string; icon?: string; voidIcon?: string; text?: string; voidText?: string; color?: string; voidColor?: string; disabled?: boolean; readonly?: boolean; validateEvent?: boolean; } export declare const defaultRateProps: () => DefaultProps<RateProps>; export interface RateEmits { (e: 'update:model-value', value: number): void; (e: 'change', value: number): void; }