sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
19 lines (18 loc) • 503 B
TypeScript
export interface ActionSheetItemProps {
name?: string;
label?: string;
value?: any;
description?: string;
color?: string;
loading?: boolean;
disabled?: boolean;
}
export type ActionSheetItem = ActionSheetItemProps;
export interface ActionSheetItemEmits {
(e: 'click'): void;
}
export interface ActionSheetItemSlots {
default?(props?: Record<string, never>): any;
label?(props?: Record<string, never>): any;
description?(props?: Record<string, never>): any;
}