UIKit for Tigerbrokes Apps.
Preview and docs: https://tigerbrokers.github.io/tiger-ui
> npm install --save-dev @tigerbrokers/tiger-ui
Import all components:
import Vue from 'vue'
import TigerUI from '@tigerbrokers/tiger-ui'
Vue.use(TigerUI)
Use single component:
import Example from '@tigerbrokers/tiger-ui/Example'
new Vue({
name: 'MyApp',
components: { Example }
})
> git clone [email protected]:tigerbrokers/tiger-ui.git
> cd tiger-ui
> git checkout -b <my-feature-branch>
> yarn
> yarn start
> mkdir MyComponent
> touch index.vue
> touch play.js
> yarn build
> git push -u origin <my-feature-branch>
then create Pull Request.
Run all tests:
> yarn test
Run test for some component:
> yarn test Example Button
Clone and make contribution, submit your PRs.
MIT