tiny unopinionated utility for resizeable split views, based on split.js
npm install vue-splitjs

npm install vue-splitjs --saveOr if you want to use it directly in the browser add
``html`
to your scripts.
javascript
// MyComponent.vue
import VueSplit from 'vue-splitjs'export default {
components: { VueSplit },
// ...
}
`
You can use it in your vue app like this
`html
:elements="[
'#slotOne',
'#slotTwo'
]"
direction="vertical"
:min-size="100"
:gutter-size="10"
:snap-offset="50"
>
foo
bar
``