w-ui
v1.1.17
Published
A Vue.js 2.0 UI Toolkit for mobile
Downloads
14
Readme
wui (beta)
A Vue.js UI Toolkit for mobile with 50+ components
Install
npm install w-ui
Quick Start
<template>
<Button type="primary" @click.native="doClick">点我</Button>
</template>
<script>
import { Button, Alert } from 'w-ui'
export default {
components: {
Button,
Alert
},
methods: {
doClick () {
Alert('hello, wui');
}
}
}
</script>
For more information, please refer to Quick Start in our documentation.
Change log
#1.1.1
[x] 【功能】优化accordion组件样式
[x] 【bug】修复Confirm回调问题