campus-errand/admin/node_modules/element-plus/es/components/collapse/src/collapse-item.mjs
2026-03-01 05:01:47 +08:00

35 lines
753 B
JavaScript

import { ArrowRight } from '@element-plus/icons-vue';
import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
import { iconPropType } from '../../../utils/vue/icon.mjs';
const collapseItemProps = buildProps({
/**
* @description title of the panel
*/
title: {
type: String,
default: ""
},
/**
* @description unique identification of the panel
*/
name: {
type: definePropType([String, Number]),
default: void 0
},
/**
* @description icon of the collapse item
*/
icon: {
type: iconPropType,
default: ArrowRight
},
/**
* @description disable the collapse item
*/
disabled: Boolean
});
export { collapseItemProps };
//# sourceMappingURL=collapse-item.mjs.map