介绍
vue-easytable是一个基于vue的可编辑表格开源组件,功能强大,文档完善。
github地址:https://github.com/huangshuwei/vue-easytable
文档地址:http://doc.huangsw.com/vue-easytable/app.html#/intro
使用指导
- 创建vue工程:
vue init webpack vue-easytable-demo
- 下载vue-easytable
npm install vue-easytable --save-dev
- 在main.js中全局引入
import 'vue-easytable/libs/themes-base/index.css'
import {VTable, VPagination} from 'vue-easytable'
Vue.component(VTable.name, VTable)
Vue.component(VPagination.name, VPagination)
- 创建测试数据
先在src下创建mock文件夹,在下面创建文件tableData.js
export default [
{ 'id': '1', 'name': '小红', 'age': '12', 'height': '112', 'sex': '女', 'score': '100' },
{ 'id': '2', 'name': '小丽', 'age': '12', 'height': '116', 'sex': '女', 'score': '99' },
{ 'id': '3', 'name': '小芳', 'age': '12', 'height': '113', 'sex': '女', 'score': '98' },
{ 'id': '4', 'name': '小华', 'age': '12', 'height': '130', 'sex': '男', 'score': '96' },
{ 'id': '5', 'name': '小聪', 'age': '12', 'height': '120', 'sex': '男', 'score': '93' },
{ 'id': '6', 'name': '小胖', 'age': '12', 'height': '118', 'sex': '男', 'score': '86' },
{ 'id': '7', 'name': '小明', 'age': '12', 'height': '121', 'sex': '男', 'score': '59' },
{ 'id': '8', 'name': '小飞', 'age': '12', 'height': '125', 'sex': '男', 'score': '92' },
{ 'id': '9', 'name': '小环', 'age': '12', 'height': '120', 'sex': '女', 'score': '93' },
{ 'id': '10', 'name': '小义', 'age': '12', 'height': '116', 'sex': '男', 'score': '79' },
{ 'id': '11', 'name': '小白', 'age': '12', 'height': '116', 'sex': '男', 'score': '81' },
{ 'id': '12', 'name': '小黑', 'age': '12', 'height': '118', 'sex': '男', 'score': '88' },
{ 'id': '13', 'name': '小海', 'age': '12', 'height': '125', 'sex': '男', 'score': '83' },
{ 'id': '14', 'name': '小金', 'age': '12', 'height': '129', 'sex': '男', 'score': '82' },
{ 'id': '15', 'name': '小路', 'age': '12', 'height': '127', 'sex': '女', 'score': '72' },
{ 'id': '16', 'name': '小龙', 'age': '12', 'height': '125', 'sex': '男', 'score': '96' },
{ 'id': '17', 'name': '小蓝', 'age': '12', 'height': '118', 'sex': '女', 'score': '93' },
{ 'id': '18', 'name': '小兰', 'age': '12', 'height': '124', 'sex': '女', 'score': '71' },
{ 'id': '19', 'name': '小高', 'age': '12', 'height': '116', 'sex': '女', 'score': '79' },
{ 'id': '20', 'name': '小国', 'age': '12', 'height': '130', 'sex': '男', 'score': '68' }
]
- 创建展示文件TablePage.vue(放置在conponents目录下)
<template>
<div class="tablePage">
<h1>表格+分页</h1>
<!-- 表格-->
<v-table
:columns="tableConfig.columns"
:table-data="tableConfig.tableData"
:paging-index="(pageIndex-1)*pageSize"
></v-table>
<!-- 分页-->
<v-pagination
@page-change="pageChange"
@page-size-change="pageSizeChange"
:total="total"
:page-size="pageSize"
:layout="['total', 'prev', 'pager', 'next', 'sizer', 'jumper']"
></v-pagination>
</div>
</template>
<script>
import tableDate from '../mock/tableData.js'
export default {
data () {
return {
pageIndex: 1,
pageSize: 10,
total: '',
tableConfig: {
tableData: [],
columns: [
{
field: 'id',
title: '编号',
width: 50,
columnAlign: 'center'
},
{
field: 'name',
title: '姓名',
width: 120,
columnAlign: 'center'
},
{
field: 'age',
title: '年龄',
width: 50,
columnAlign: 'center'
},
{
field: 'height',
title: '身高',
width: 100,
columnAlign: 'left'
},
{
field: 'sex',
title: '性别',
width: 50,
columnAlign: 'center'
},
{
field: 'score',
title: '成绩',
width: 80,
columnAlign: 'center'
}
]
}
}
},
created () {
this.getTableData()
},
methods: {
getTableData () {
this.tableConfig.tableData = tableDate.slice(
(this.pageIndex - 1) * this.pageSize,
this.pageIndex * this.pageSize
)
this.total = tableDate.length
},
pageChange (pageIndex) {
this.pageIndex = pageIndex
this.getTableData()
console.log(pageIndex)
},
pageSizeChange (pageSize) {
this.pageIndex = 1
this.pageSize = pageSize
this.getTableData()
}
}
}
</script>
- 运行:npm run dev
- 效果图(界面访问http://localhost:8080/#/):
- 打包(用于发布):npm run build
生成文件在根目录下的dist目录下。 - demo源代码
https://gitee.com/cxyzy1/vue-easytable
附录
- vue-easytable源代码:https://github.com/huangshuwei/vue-easytable
- vue进阶之vue-easytable实现前端的表格+分页 https://blog.csdn.net/youyanh/article/details/81501971
- 使用严格模式eslint时,报错Missing space before function parentheses的问题 http://08643.cn/p/2f5cded8a2d3