UNPKG

@extclp/vexip-ui

Version:

A Vue 3 UI library, Highly customizability, full TypeScript, performance pretty good

9 lines (8 loc) 277 B
export type BadgeType = 'error' | 'primary' | 'success' | 'warning' | 'info' | 'disabled'; export interface BadgeSlots { default?: () => any; content?: (params: { content: number | string; }) => any; } export declare const badgeTypes: readonly BadgeType[];