shareable-components-poc
v0.1.3
Published
A vue package to create elegant buttons.
Downloads
6
Readme
shareable-components-poc
Project setup
npm install --save shareable-components-poc
or
yarn add shareable-components-poc
Basic Usage
<template>
<MyButton
background="#fff"
color="#000"
text="Hello World"
/>
</template>
<script>
import MyButton from "shareable-components-poc";
export default {
components:{
MyButton
}
}
</script>