0.1.3 • Published 5 years ago

vue-ptero v0.1.3

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

vue-ptero

npm Build Status dependencies Status devDependencies Status License

:deciduous_tree: The Vue binding for ptero

Requirements

  • Vue 1.x or 2.x

Getting started

$ npm install vue-ptero --save # for npm users
$ yarn add vue-ptero           # for yarn users
const Vue = require('Vue')
const VuePtero = require('vue-ptero')

Vue.use(VuePtero, { target: document.body })

new Vue({
  el: '#app',
  created() {
    // listen a custom event
    this.$ptero.on('event-xxx', e => {
      console.log(e.detail)
    })

    // emit a custom event
    this.$ptero.emit('event-xxx', { foo: 1 })
  },
})

Example

First, try to build example projects.

$ git clone https://github.com/emoji-gen/vue-ptero.git
$ cd vue-ptero
$ yarn
$ yarn run example

License

MIT © Emoji Generator

0.1.3

5 years ago

0.1.2

6 years ago

0.1.1

7 years ago

0.1.0

7 years ago