first commit

This commit is contained in:
lingxiao865
2026-02-10 08:05:03 +08:00
commit c5af079d8c
1094 changed files with 97530 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
/* eslint-disable */
/**
* 该文件为脚本自动生成文件,请勿随意修改。如需修改请联系 PMC
* */
export default {
/** 透传至 Badge 组件 */
badgeProps: {
type: Object,
default: () => ({}),
},
/** 是否禁用当前选项卡 */
disabled: Boolean,
/** `1.0.0-rc.1`。图标,传对象则透传至 Icon */
icon: {
type: [String, Object],
},
/** 选项卡名称 */
label: {
type: String,
default: '',
},
/** 是否启用选项卡懒加载 */
lazy: Boolean,
/** 用于自定义选项卡面板内容 */
panel: {
type: String,
},
/** 选项卡的值,唯一标识 */
value: {
type: [String, Number],
},
};