UNPKG

sard-uniapp

Version:

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

24 lines (23 loc) 576 B
import { type StyleValue } from 'vue'; import { type FabItem } from '../fab/common'; export interface FabItemProps { rootStyle?: StyleValue; rootClass?: string; name?: string; color?: string; background?: string; icon?: string; iconFamily?: string; isEntry?: boolean; index?: number; item?: FabItem; } export declare const defaultFabItemProps: {}; export interface FabItemSlots { default?(props: Record<string, never>): any; } export interface FabItemEmits { (e: 'click', event: any): void; } export interface FabItemExpose { }