UNPKG

veui

Version:

Baidu Enterprise UI for Vue.js.

30 lines (22 loc) 435 B
import { VeuiDefineComponent, VeuiDefineInstance, UiMixin, Status } from '../common' type BadgeType = Status | 'aux' type Props = { value?: number | string max?: number hidden?: boolean type?: BadgeType } type Emits = {} type Mixins = UiMixin type Slots = { default(): unknown } type Badge = VeuiDefineComponent<{ new (...args: any[]): VeuiDefineInstance<Props, Emits, Slots, Mixins> }> export default Badge