Files
mini-yu/uni_modules/tdesign-uniapp/components/side-bar/side-bar-item-props.ts

28 lines
492 B
TypeScript
Raw Normal View History

2026-02-10 08:05:03 +08:00
/* eslint-disable */
/**
* PMC
* */
export default {
/** 透传至 Badge 组件 */
badgeProps: {
type: Object,
},
/** 是否禁用 */
disabled: Boolean,
/** 图标,传对象则透传至 Icon */
icon: {
type: [String, Object],
},
/** 展示的标签 */
label: {
type: String,
default: '',
},
/** 当前选项的值 */
value: {
type: [String, Number],
},
};