element-plus
Version:
A Component Library for Vue 3
25 lines (22 loc) • 525 B
JavaScript
import { buildProps } from '../../../utils/vue/props/runtime.mjs';
const splitterPanelProps = 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"
};
export { splitterPanelEmits, splitterPanelProps };
//# sourceMappingURL=split-panel2.mjs.map