0.1.3 • Published 3 years ago

template-firm-pc0 v0.1.3

Weekly downloads
-
License
-
Repository
github
Last release
3 years ago

template-firm-pc0

安装公共库

npm install template-firm-pc0 -D

在main.js全局注册

import PackagesModel from 'template-firm-pc';
Vue.use(PackagesModel);
在对应的组件直接使用
<TableModel
            :column="column"
            :dataList="dataList"
            :dataListLoading="dataListLoading"
            :page="page"/>
 column:[{
         prop: 'userId',
         label: 'ID',
         width: 80,
       },{
         prop: 'username',
         label: '用户名'
       },{
         prop: 'relName',
         label: '姓名'
       },{
         prop: 'email',
         label: '邮箱'
       },{
         prop: 'mobile',
         label: '手机号'
       }]
 dataList: [{
         "userId": 11760,
         "username": "wushanshan",
         "email": "13486240410@139.com",
         "relName": "吴珊珊",
         "mobile": "13486240410"
       },
         {
           "userId": 10240,
           "username": "yangfeng6",
           "email": "e@qiongloo.com",
           "relName": "杨峰",
           "mobile": "13615814514"
         }],
 page: {
         isPage: false
       }

dataListLoading: false
### Customize configuration

See Configuration Reference