25 lines
524 B
JavaScript
25 lines
524 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-panel.mjs.map
|