0.0.2 • Published 4 years ago
tendermint-ui-fix v0.0.2
tendermint-ui-fix
Vue components for front end projects. This project is in alpha.
Install
yarn add tendermint-ui-fixUse
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 installCompiles and hot-reloads for development
yarn run serveCompiles and minifies for production
yarn run buildLints and fixes files
yarn run lintRun your unit tests
yarn run test:unitRun your end-to-end tests
yarn run test:e2eTesting
We use Prettier to lint all of our JS and Vue files. We use Jest to unit test our components.
yarn lint
yarn test