
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
@swivel-admin/vue-multi-split-pane
Advanced tools
A component based on Vue.js. Provides unlimited resizable multi pane support.
A component based on Vue.js. Provides unlimited resizable multi pane support.
Live Demo | Codesandbox | JSFiddle | Codepen
npm i vue-multi-split-pane
<script src="https://unpkg.com/vue-multi-split-pane"></script>
import { MultiSplitPane, Pane } from 'vue-multi-split-pane'
export default {
components: {
MultiSplitPane,
Pane
},
methods: {
onPaneCollapsed(paneIndex, paneClass, containerClass) {
console.log(
`${paneIndex}. pane collapsed. Pane class: '${paneClass}' MultiSplitPane class: '${containerClass}'`
)
},
onPaneExpanded(paneIndex, paneClass, containerClass) {
console.log(
`${paneIndex}. pane expanded. Pane class: '${paneClass}' MultiSplitPane class: '${containerClass}'`
)
}
}
}
<MultiSplitPane
split="horizontal"
height="400px"
width="1000px"
resizerWidth="30px"
classes="v-pane-custom"
@onPaneCollapsed="onPaneCollapsed"
@onPaneExpanded="onPaneExpanded"
>
<Pane>
<template v-slot:resizer>
resizer slot
</template>
<template v-slot:content>
Content 1
</template>
</Pane>
<Pane>
<template v-slot:content>
Content 2
</template>
</Pane>
<Pane>
<template v-slot:content>
Content 3
</template>
</Pane>
</MultiSplitPane>
<MultiSplitPane
split="horizontal"
height="400px"
width="1000px"
resizerWidth="30px"
:nested="true"
classes="v-pane-custom"
>
<Pane>
<template v-slot:content>
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
</template>
</Pane>
<Pane classes="paneNested">
<template v-slot:content>
<MultiSplitPane
height="400px"
resizerWidth="30px"
classes="v-pane-custom"
>
<Pane>
<template v-slot:content>
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
</template>
</Pane>
<Pane>
<template v-slot:content>
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
</template>
</Pane>
</MultiSplitPane>
</template>
</Pane>
</MultiSplitPane>
Also initHeight
props is available for vertical split.
<MultiSplitPane
split="horizontal"
height="400px"
width="1000px"
resizerWidth="30px"
classes="v-pane-custom"
>
<Pane initWidth="75%">
<template v-slot:content>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Consectetur,
excepturi in dolores accusantium praesentium quidem laborum neque ut ipsum
veritatis ratione rem, esse totam voluptates ullam nesciunt tempora
architecto laudantium!
</template>
</Pane>
<Pane initWidth="25%">
<template v-slot:content>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Consectetur,
excepturi in dolores accusantium praesentium quidem laborum neque ut ipsum
veritatis ratione rem, esse totam voluptates ullam nesciunt tempora
architecto laudantium!
</template>
</Pane>
</MultiSplitPane>
Prop | Description | value | default |
---|---|---|---|
split | Orientation of the MultiSplitPane | vertical, horizontal | vertical |
width | Width of the MultiSplitPane | String | 100% |
height | Height of the MultiSplitPane | String | auto |
resizerWidth | Width/height of the resizers. Valid for horizontal and vertical orientation. | String | 30px |
classes | Custom class prop. Can be send to MultiSplitPane or Pane | String | none |
:nested | Will you use nested MultiSplitPane? Then should be true. | Boolean | false |
initWidth | Can be used to set initial width for specific Pane component. | String | undefined |
initHeight | Can be used to set initial height for specific Pane component. | String | undefined |
Event | Description |
---|---|
onPaneCollapsed ( paneIndex, paneClass, containerClass ) | Event will be fired when collapsed any pane. Used on MultiSplitPane |
onPaneExpanded ( paneIndex, paneClass, containerClass ) | Event will be fired when expanded any pane. Used on MultiSplitPane |
1.2.0
initWidth
and initHeight
props to set initial width or height for Pane component.FAQs
A component based on Vue.js. Provides unlimited resizable multi pane support.
The npm package @swivel-admin/vue-multi-split-pane receives a total of 0 weekly downloads. As such, @swivel-admin/vue-multi-split-pane popularity was classified as not popular.
We found that @swivel-admin/vue-multi-split-pane demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.