Button component for Vue.js v2.0.1+.
$ npm install vue-buttonDownload dist/vue-button.js and include it in your HTML file:
<script src="path/to/vue-button/dist/vue-button.js"></script>or you can include from unpkg.
<!--use the lastest release--> <script src="https://unpkg.com/vue-button@lastest"></script><v-button> Hello </v-button>import Vue from 'Vue' import VueButton from 'vue-button' // register component to use Vue.component('v-button', VueButton)