sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
22 lines (21 loc) • 572 B
TypeScript
import { type StyleValue } from 'vue';
export interface SegmentedItemProps {
rootStyle?: StyleValue;
rootClass?: string;
label?: string | number;
value?: string | number | boolean;
icon?: string;
iconFamily?: string;
iconSize?: string;
disabled?: boolean;
readonly?: boolean;
}
export declare const defaultSegmentedItemProps: {};
export interface SegmentedItemSlots {
default?(props: Record<string, never>): any;
}
export interface SegmentedItemEmits {
(e: 'click', event: any): void;
}
export interface SegmentedItemExpose {
}