1.0.2 • Published 2 years ago

crw-ui v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

说明

WOF-UI 是一款基于 Vue.js 2.0 的前端 UI 组件库,主要用于快速开发 PC 网站中后台产品

安装

cnpm i crw-ui -S

使用

在src/main.js
import WOFUI from 'crw-ui';
Vue.use(WOFUI);
import 'crw-ui/crw-ui.css';

组件

按钮

    <el-button round>圆角按钮</el-button>
    <el-button type="primary" round>主要按钮</el-button>
    <el-button type="success" round>成功按钮</el-button>
    <el-button type="info" round>信息按钮</el-button>
    <el-button type="warning" round>警告按钮</el-button>
    <el-button type="danger" round>危险按钮</el-button>

表格

<wof-table :column="column" :data="data"></wof-table>
<script>
export default {
  data() {
    return {

    }
  },
}
</script>