wui (beta)
A Vue.js UI Toolkit for mobile with 50+ components
npm install w-ui
<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.
#1.1.1
- 【功能】优化accordion组件样式
- 【bug】修复Confirm回调问题