1.0.0 • Published 4 years ago

vue-pad v1.0.0

Weekly downloads
6
License
-
Repository
-
Last release
4 years ago

Vue Pad

npm (scoped with tag) npm

DEMO - https://jpntex.github.io/vue-pad/

Getting Started

Do you want to add to your own projects? There you go:

  1. Add this package to your dependencies
$ npm i vue-pad
# or
$ yarn add vue-pad
  1. Usage:
<template>
  <vue-pad :sounds="sounds" />
</template>

<script>
import VuePad from 'vue-pad'

export default {
  components: {
    VuePad
  },
  data() {
    return {
      sounds: [{
        url: '/beats/snare.wav',
        color: 'purple'
      }]
    }
  }
}
</script>

License

MIT license - jpntex