1.0.0 • Published 4 years ago

seniortables v1.0.0

Weekly downloads
1
License
ISC
Repository
-
Last release
4 years ago

安装

# npm方式安装
npm i seniortables

属性说明

属性名称类型是否必填说明
v-modelBoolean必填控制显示隐藏
filedsArray[]必填右侧表格字段 后面详解
tableDataArray[]必填表格数据
selectBoolean--是否显示选择框(默认true)
indexBoolean--是否显示索引(默认true)

fileds

属性名称类型是否必填说明
widthString--单元格的宽度(默认为'auto')
labelString--展示的表头
propString必填列展示的字段
customBoolean--是否自定义

事件

事件名称说明返回值
selectionChange表格选中事件处理选中的数据Array[]:selection
<template slot-scope="{row,$index}" slot="name">
    {{row}}
</template>