1.1.1 • Published 7 years ago

vue-splitter-comp v1.1.1

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

vue-splitter-comp

Build Status

For splitting a view in two!

Demo

Installing

Install from npm.

yarn add vue-splitter-comp

Import the component.

import VueSplitter from "vue-splitter-comp"

Include it in the components section of the vue component.

components: {
  VueSplitter
}

Use it in the html, populating the left-pane and right-pane slots.

<vue-splitter :margin="20">
  <div slot="left-pane">
    <div>Some left content here.</div>
  </div>
  <div slot="right-pane">
    <div>Some right content here.</div>
  </div>
</vue-splitter>

The margin prop can be used to set the percentage that the dragger should not exceed on either side. Defaults to 10%.

The resize event will be fired when the dragger is moved.

Using

The dragger can be dragged left and right to move the panes. It can be clicked to reset to 50%.

Styles

The following classes may be overridden to apply the style you would like.

The component is wrapped in a .vue-splitter-comp class.

Each pane has a .splitter-pane class, with a .left-pane and .right-pane class respectively.

The splitter bar has a .splitter class.

1.1.1

7 years ago

1.1.0

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago