UNPKG

sard-uniapp

Version:

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

22 lines (21 loc) 591 B
export interface ShareSheetItemProps { name?: string; label?: string; value?: any; description?: string; color?: string; background?: string; icon?: string; iconFamily?: string; disabled?: boolean; } export type ShareSheetItem = ShareSheetItemProps; export interface ShareSheetItemEmits { (e: 'click'): void; } export interface ShareSheetItemSlots { default?(props?: Record<string, never>): any; label?(props?: Record<string, never>): any; description?(props?: Record<string, never>): any; icon?(props?: Record<string, never>): any; }