@extclp/vexip-ui
Version:
A Vue 3 UI library, Highly customizability, full TypeScript, performance pretty good
9 lines (8 loc) • 357 B
TypeScript
export type TagState = 'default' | 'primary' | 'info' | 'success' | 'error' | 'warning';
export type TagNamedColor = 'lime' | 'pink' | 'magenta' | 'tomato' | 'orange' | 'cyan' | 'navy' | 'gold' | 'purple';
export type TagType = TagState | TagNamedColor;
export interface TagSlots {
prefix?: () => any;
suffix?: () => any;
default?: () => any;
}