UNPKG

@fesjs/fes-design

Version:
50 lines (46 loc) 682 B
const rateProps = { size: { type: String, default: 'medium' }, allowHalf: { type: Boolean, default: false }, color: { type: String }, count: { type: Number, default: 5 }, // 评分被激活的个数 modelValue: { type: Number, default: 0 }, readonly: { type: Boolean, default: false }, clearable: { type: Boolean, default: false }, // 辅助文字 texts: { type: Array }, showText: { type: Boolean, default: false }, // 颜色填充 colorFilled: { type: Boolean, default: true } }; // 组件暴露给外部的 props 类型 // 评分对象 export { rateProps };