@canwdev/tank-ui
v0.2.34
Published
A __ vue 2 ui library
Downloads
40
Readme
TankUI (tank-ui)
A ~~Minimal~~ Test Vue 2 UI Library.
Examples: https://canwdev.github.io/tank-ui
Usage
yarn add tank-ui
In main.js
import tankUI from '@canwdev/tank-ui'
import '@canwdev/tank-ui/dist/tank-ui.css'
Vue.use(tankUI)
export default new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')
In .vue
file
<template>
<TkButton>Hello world!</TkButton>
</template>
More examples see: doc folder
Dev & Build
# Install deps
yarn install
cd doc && yarn install
# Start dev service
yarn dev
# Start doc
cd doc && yarn serve
# Build
yarn build