WOF-UI 是一款基于 Vue.js 2.0 的前端 UI 组件库,主要用于快速开发 PC 网站中后台产品
cnpm i fzq-my-ui -S
在src/main.js
import WOFUI from 'fzq-my-ui';
Vue.use(WOFUI);
import 'fzq-my-ui/qf-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>