emoji-gen / vue-ptero

:deciduous_tree: The Vue binding for ptero
https://www.npmjs.com/package/vue-ptero
MIT License
1 stars 0 forks source link
javascript vue vue2 vuejs vuejs2

vue-ptero

npm Build Status dependencies Status devDependencies Status License

:deciduous_tree: The Vue binding for ptero

Requirements

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