1.0.0 • Published 4 years ago

test-fancy-button v1.0.0

Weekly downloads
2
License
ISC
Repository
-
Last release
4 years ago

fancy-button

Fancy Button component is for Testing purpose.

Install

npm install --save test-fancy-button

Usage

js
<template>
 <test-fancy-button rounded="round" :color="color" :size="size">My Button</test-fancy-button>
</template>
import TestFancyButton from 'test-fancy-button'

export default {
  components: {TestFancyButton},
  data() {
    return {
      round: 'true';
      color: 'red';
      size: 'large';
    }
  }
}