npm install --save vuejs-common-component
or
yarn add vuejs-common-component
<template>
<VueButton
background="#fff"
color="#000"
text="Hello World"
/>
</template>
<script>
import {VueButton} from "vuejs-common-component";
export default {
components:{
VueButton
}
}
</script>