0.0.2 • Published 2 years ago

tendermint-ui-fix v0.0.2

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
2 years ago

tendermint-ui-fix

Vue components for front end projects. This project is in alpha.

Install

yarn add tendermint-ui-fix

Use

In another Vue component:

<template>
  <tm-field value="Hello World" />
</template>

<script>
import { TmField } from "@tendermint/ui"
export default {
  name: "Parent Component",
  components: {
    TmField
  }
}
</script>

Development

yarn install

Compiles and hot-reloads for development

yarn run serve

Compiles and minifies for production

yarn run build

Lints and fixes files

yarn run lint

Run your unit tests

yarn run test:unit

Run your end-to-end tests

yarn run test:e2e

Testing

We use Prettier to lint all of our JS and Vue files. We use Jest to unit test our components.

yarn lint
yarn test