1.0.1 • Published 6 years ago

popo-vue-panel v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

popo-vue-panel

Vue panel for popojs

Installation

NPM

npm install popo-vue-panel --save

Usage

ES6

The following examples can also be used with CommonJS by replacing ES6-specific syntax with CommonJS equivalents.

import Vue from 'vue'
import Panel from 'popo-vue-panel'

new Vue({
  components: {
    Panel
  }
})

Globals (script tag)

Add a script tag pointing to dist/popo-vue-panel.min.js after adding Vue.

<html>
<head>
  ...
</head>
<body>
  <div id="app">
    <popo-vue-panel title="title" target="panel-id">
        <div slot="center"></div>
    </popo-vue-panel>
  </div>

  <script src="path/to/vue.js"></script>
  <script src="path/to/popo-vue-panel.min.js"></script>
  <script>
    new Vue({
      el: '#app'
    })
  </script>
</body>
</html>

Options

PropsTypeValuesDefault
targetNumberStringpanel id or panel map key1
titleStringpanel titlenull

Slot Options

PropsTypeValuesDefault
slotStringhead, center, left, right, footcenter

License

popo-vue-panel is open source and released under the MIT License.

Copyright (c) 2017 DaShun.

1.0.1

6 years ago

1.0.0

6 years ago