vue-common-component-pro
v0.1.2
Published
## Project setup ``` npm install --save vue-common-component-pro ``` or ``` yarn add vue-common-component-pro ```
Downloads
2
Readme
vue-common-component-pro
Project setup
npm install --save vue-common-component-pro
or
yarn add vue-common-component-pro
Basic Usage
<template>
<VueElegantButton
background="#fff"
color="#000"
text="Hello World"
/>
</template>
<script>
import {VueElegantButton} from "vue-common-component-pro";
export default {
components:{
VueElegantButton
}
}
</script>