Socket
Socket
Sign inDemoInstall

vue-split-pane

Package Overview
Dependencies
21
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vue-split-pane

Adjustable split pane using Vue.js


Version published
Weekly downloads
69
increased by7.81%
Maintainers
1
Install size
63.8 kB
Created
Weekly downloads
 

Readme

Source

vue-split-pane

Adjustable split pane using Vue.js

Install

# yarn (recommend)
$ yarn add vue-split-pane

# npm
$ npm install vue-split-pane --save

Usage

CDN

<script src="https://unpkg.com/vue-split-pane"></script>

.vue files

<template>
  <div class="app">
    <split-pane>
      <section slot="left">Left Pane</section>
      <section slot="right">Right Pane</section>
    </split-pane>
  </div>
</template>

<script>
import SplitPane from 'vue-split-pane'

export default {
  components: { SplitPane }
}
</script>

<!-- optionally use our default style -->
<style src="vue-split-pane/themes/default.css"></style>

Slot

NameDescription
leftThe content of left pane
rightThe content of right pane

Build Setup

You can use vue-cli with vue-rollup-boilerplate templates or other vue templates

License

MIT © Dang Van Thanh dangvanthanh@dangthanh.org

Keywords

FAQs

Last updated on 11 Jul 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc