matcha-ui

vue ui

Usage no npm install needed!

<script type="module">
  import matchaUi from 'https://cdn.skypack.dev/matcha-ui';
</script>

README

matcha-ui

Build Status

Install

npm i --save matcha-ui

Quick Start

import { Button } from 'matcha-ui'
import 'matcha-ui/dist/index.css'
export default {
  components: {
    Button
  }
}

You also need to add the CSS (later it will be changed to SCSS)

:root {
  --button-height: 32px;
  --button-bg: white;
  --button-active-bg: #eee;
  --font-size: 14px;
  --border-radius: 4px;
  --color: #999;
  --border-color: #999;
  --border-color-hover: #666;
}