vue-elegant-buttons
v0.1.0
Published
## Project setup ``` npm install --save vue-elegant-buttons ``` or ``` yarn add vue-elegant-buttons ```
Readme
vue-elegant-button
Project setup
npm install --save vue-elegant-buttonsor
yarn add vue-elegant-buttonsBasic Usage
<template>
<VueElegantButton
background="#fff"
color="#000"
text="Hello World"
/>
</template>
<script>
import VueElegantButton from "vue-elegant-buttons";
export default {
components:{
VueElegantButton
}
}
</script>