UNPKG

wot-design-uni

Version:

一个基于Vue3+TS开发的uni-app组件库,提供70+高质量组件,支持暗黑模式、国际化和自定义主题。

51 lines (47 loc) 1.27 kB
/* * @Author: weisheng * @Date: 2024-03-15 11:36:12 * @LastEditTime: 2024-11-20 20:29:03 * @LastEditors: weisheng * @Description: * @FilePath: /wot-design-uni/src/uni_modules/wot-design-uni/components/wd-badge/types.ts * 记得注释 */ import type { ExtractPropTypes, PropType } from 'vue' import { baseProps, makeBooleanProp, makeStringProp, numericProp } from '../common/props' export type BadgeType = 'primary' | 'success' | 'warning' | 'danger' | 'info' export const badgeProps = { ...baseProps, /** * 显示值 */ modelValue: numericProp, /** 当数值为 0 时,是否展示徽标 */ showZero: makeBooleanProp(false), bgColor: String, /** * 最大值,超过最大值会显示 '{max}+',要求 value 是 Number 类型 */ max: Number, /** * 是否为红色点状标注 */ isDot: Boolean, /** * 是否隐藏 badge */ hidden: Boolean, /** * badge类型,可选值primary / success / warning / danger / info */ type: makeStringProp<BadgeType | undefined>(undefined), /** * 为正时,角标向下偏移对应的像素 */ top: numericProp, /** * 为正时,角标向左偏移对应的像素 */ right: numericProp } export type BadgeProps = ExtractPropTypes<typeof badgeProps>