JewelryMall/admin/node_modules/element-plus/lib/components/splitter/src/split-panel.js
2026-02-14 19:29:15 +08:00

28 lines
588 B
JavaScript

'use strict';
var runtime = require('../../../utils/vue/props/runtime.js');
const splitterPanelProps = runtime.buildProps({
min: {
type: [String, Number]
},
max: {
type: [String, Number]
},
size: {
type: [String, Number]
},
resizable: {
type: Boolean,
default: true
},
collapsible: Boolean
});
const splitterPanelEmits = {
"update:size": (value) => typeof value === "number" || typeof value === "string"
};
exports.splitterPanelEmits = splitterPanelEmits;
exports.splitterPanelProps = splitterPanelProps;
//# sourceMappingURL=split-panel.js.map