1.0.0 • Published 2 years ago
diyui-1204 v1.0.0
说明
WOF-UI 是一款基于 Vue.js 2.0 的前端 UI 组件库,主要用于快速开发 PC 网站中后台产品
安装
cnpm i diyui -S
使用
在src/main.js
import WOFUI from 'diyui';
Vue.use(WOFUI);
import 'diyui/wof-ui.css';
组件
框
<wof-fieldset>
<h1>神龙教主</h1>
</wof-fieldset>
<wof-fieldset title="神龙教主">
<h1>洪福齐天,寿与天齐</h1>
</wof-fieldset>
分页
<wof-row>
<wof-page :total="10" @changePage="changePageFn"></wof-page>
</wof-row>
<script>
export default {
methods: {
changePageFn(n) {
alert(n)
}
}
}
</script>
1.0.0
2 years ago