Vue components for front end projects. This project is in alpha.
yarn add tendermint-ui-fix
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>
yarn install
yarn run serve
yarn run build
yarn run lint
yarn run test:unit
yarn run test:e2e
We use Prettier to lint all of our JS and Vue files. We use Jest to unit test our components.
yarn lint
yarn test