vue-elegant-button-ulme
v0.1.4
Published
A vue package to create elegant buttons.
Readme
vue-elegant-button
Project setup
npm install --save vue-elegant-button-ulmeor
yarn add vue-elegant-button-ulmeBasic Usage
<template>
<VueElegantButtonUlme
background="#fff"
color="#000"
text="Hello World"
/>
</template>
<script>
import VueElegantButtonUlme from "vue-elegant-button-ulme";
export default {
components:{
VueElegantButtonUlme
}
}
</script>