element-plus的组件数据配置化封装 - table

目录

一、封装的table、table-column组件以及相关ts类型的定义 

1、ATable组件的封装 - index.ts 

2、ATableColumn组件的封装 - ATableColumn.ts 

3、ATable、ATableColumn类型 - interface.ts

二、ATable、ATableColumn组件的使用

三、相关属性、方法的使用以及相关说明

1. Config Attributes

2. Table-slot

3. Table Events

4. Table Methods

5. Column Attributes

6. Table-column-slot


随着vue3框架逐渐的成熟,有越来越多的前端开始手中的项目更新迭代成vue3版本。我想有不少人更新项目的一个重要的原因是因为vue3对于ts更加强力的支持。而本文则是在拥有强大ts提示的基础上,针对基于vue3开发的Element Plus组件库中table组件进行低代码、数据化的封装。代码难度不高,主要用到的prop、emit、slot三个知识点。

一、封装的table、table-column组件以及相关ts类型的定义 

项目中为了方便区分相关模块以及其组件,将index.vue、table-column.vue以及interface.ts三个文件存放在同一个文件夹中。

1、ATable组件的封装 - index.ts 
<template><el-tablev-loading="config.loading":element-loading-text="config['element-loading-text']":element-loading-spinner="config['element-loading-spinner']":element-loading-svg="config['element-loading-svg']":element-loading-background="config['element-loading-background']"ref="ElTableRef"class="el-table":data="dataSource":height="config.height":max-height="`${config['max-height']}px`":stripe="config.stripe":border="config.border":size="config.size":fit="config.fit":show-header="config['show-header']":current-row-key="config['current-row-key']":highlight-current-row="config['highlight-current-row']":empty-text="config['empty-text']":row-key="config['row-key']":row-class-name="config['row-class-name']":cell-class-name="config['cell-class-name']":default-sort="config['default-sort']":tooltip-effect="config['tooltip-effect']":show-summary="config['show-summary']":sum-text="config['sum-text']":summary-method="config['summary-method']":span-method="config['span-method']":select-on-indeterminate="config['select-on-indeterminate']":indent="config.indent":lazy="config.lazy":load="config.load":tree-props="config['tree-props']"@select="select"@select-all="selectAll"@selection-change="selectionChange"@cell-mouse-enter="cellMouseEnter"@cell-mouse-leave="cellMouseLeave"@cell-click="cellClick"@cell-dblclick="cellDblclick"@cell-contextmenu="cellContextmenu"@row-click="rowClick"@row-contextmenu="rowContextmenu"@row-dblclick="rowDblclick"@header-click="headerClick"@header-contextmenu="headerContextmenu"@sort-change="sortChange"@filter-change="filterChange"@current-change="currentChange"@header-dragend="headerDragend"@expand-change="expandChange"><template v-for="item in columns"><a-table-column :column="item"><!-- (START) 当slot-header有值时使用插槽类型 --><template v-if="item['header-slot']" #header="scope"><slot :name="item['header-slot']" :column="scope.column" :index="scope.index"></slot></template><!-- (END) 当slot-header有值时使用插槽类型 --><!-- (START) 当slot有值时使用插槽类型 --><template v-if="item.slot" #default="scope"><slot :name="item.slot" :row="scope.row" :column="scope.column" :index="scope.index"></slot></template><!-- (END) 当slot有值时使用插槽类型 --></a-table-column></template><template #append><slot name="append"></slot></template></el-table>
</template><script lang="ts" setup>
import { PropType, Ref, ref } from 'vue'
import { ElTable } from 'element-plus'
import { columnsTypes } from './interface'
import ATableColumn from './ATableColumn.vue'
// ? Table Attributes (START)
defineProps({// table上的相关配置信息config: {type: Object as unknown as typeof ElTable,default: {} as typeof ElTable},// table的数据源dataSource: {type: Array},// table-column上的相关信息的配置columns: {type: Array as PropType<columnsTypes[]>,default: () => [] as columnsTypes[]}
})
// ? Table Attributes (END)// ? Table Events (START)
const emit = defineEmits(['select','select-all','selection-change','cell-mouse-enter','cell-mouse-leave','cell-click','cell-dblclick','cell-contextmenu','row-click','row-contextmenu','row-dblclick','header-click','header-contextmenu','sort-change','filter-change','current-change','header-dragend','expand-change'
])// 当用户手动勾选数据行的 Checkbox 时触发的事件
const select = (selection: any, row: any) => {emit('select', selection, row)
}
// 当用户手动勾选全选 Checkbox 时触发的事件
const selectAll = (selection: any) => {emit('select-all', selection)
}
// 当选择项发生变化时会触发该事件
const selectionChange = (selection: any) => {emit('selection-change', selection)
}
// 当单元格 hover 进入时会触发该事件
const cellMouseEnter = (row: any, column: any, cell: any, event: any) => {emit('cell-mouse-enter', row, column, cell, event)
}
// 当单元格 hover 退出时会触发该事件
const cellMouseLeave = (row: any, column: any, cell: any, event: any) => {emit('cell-mouse-leave', row, column, cell, event)
}
// 当某个单元格被点击时会触发该事件
const cellClick = (row: any, column: any, cell: any, event: any) => {emit('cell-click', row, column, cell, event)
}
// 当某个单元格被双击击时会触发该事件
const cellDblclick = (row: any, column: any, cell: any, event: any) => {emit('cell-dblclick', row, column, cell, event)
}
// 当某个单元格被鼠标右键点击时会触发该事件
const cellContextmenu = (row: any, column: any, cell: any, event: any) => {emit('cell-contextmenu', row, column, cell, event)
}
// 当某一行被点击时会触发该事件
const rowClick = (row: any, cell: any, event: any) => {emit('row-click', row, cell, event)
}
// 当某一行被鼠标右键点击时会触发该事件
const rowContextmenu = (row: any, cell: any, event: any) => {emit('row-contextmenu', row, cell, event)
}
// 当某一行被双击时会触发该事件
const rowDblclick = (row: any, cell: any, event: any) => {emit('row-dblclick', row, cell, event)
}
// 当某一列的表头被点击时会触发该事件
const headerClick = (cell: any, event: any) => {emit('header-click', cell, event)
}
// 当某一列的表头被鼠标右键点击时触发该事件
const headerContextmenu = (cell: any, event: any) => {emit('header-contextmenu', cell, event)
}
// 当表格的排序条件发生变化的时候会触发该事件
const sortChange = ({ column, prop, order }: any) => {emit('sort-change', { column, prop, order })
}
// column 的 key, 如果需要使用 filter-change 事件,则需要此属性标识是哪个 column 的筛选条件
const filterChange = (filters: any) => {emit('filter-change', filters)
}
// 当表格的当前行发生变化的时候会触发该事件,如果要高亮当前行,请打开表格的 highlight-current-row 属性
const currentChange = (currentRow: any, oldCurrentRow: any) => {emit('current-change', currentRow, oldCurrentRow)
}
// 当拖动表头改变了列的宽度的时候会触发该事件
const headerDragend = (newWidth: any, oldWidth: any, column: any, event: any) => {emit('header-dragend', newWidth, oldWidth, column, event)
}
// 当用户对某一行展开或者关闭的时候会触发该事件(展开行时,回调的第二个参数为 expandedRows;
// 树形表格时第二参数为 expanded)
const expandChange = (row: any, expanded: any) => {emit('expand-change', row, expanded)
}
// ? Table Events (END)
// ? Table Methods (START)
const ElTableRef = ref()
// 用于多选表格,清空用户的选择
const clearSelection = () => {ElTableRef.value.clearSelection()
}
// 用于多选表格,切换某一行的选中状态, 如果使用了第二个参数,
// 则是设置这一行选中与否(selected 为 true 则选中)
const toggleRowSelection = (row: any, selected: any) => {ElTableRef.value.toggleRowSelection(row, selected)
}
// 用于多选表格,切换全选和全不选
const toggleAllSelection = () => {ElTableRef.value.toggleAllSelection()
}
// 用于可扩展的表格或树表格,如果某行被扩展,则切换。
// 使用第二个参数,您可以直接设置该行应该被扩展或折叠。
const toggleRowExpansion = (row: any, expanded: any) => {ElTableRef.value.toggleRowExpansion(row, expanded)
}
// 用在单选表中,设置某一行被选中。
// 如果不带任何参数调用,它将清除选择。
const setCurrentRow = (row: any) => {ElTableRef.value.setCurrentRow(row)
}
// 清除排序,将数据恢复到原来的顺序
const clearSort = () => {ElTableRef.value.clearSort()
}
// 清除传入的列的过滤器columnKey。如果没有参数,则清除所有过滤器
const clearFilter = (columnKeys: any) => {ElTableRef.value.clearFilter(columnKeys)
}// 手动排序表。属性prop用于设置排序列,属性order用于设置排序顺序
const sort = (prop: string, order: string) => {ElTableRef.value.sort(prop, order)
}
defineExpose({clearSelection,toggleRowSelection,toggleAllSelection,toggleRowExpansion,setCurrentRow,clearSort,clearFilter,sort
})
// ? Table Methods (END)
</script>
2、ATableColumn组件的封装 - ATableColumn.ts 
<template><el-table-column:type="column.type":index="column.index":label="column.label":column-key="column['column-key']":prop="column.prop":width="column.width":min-width="column['min-width']":fixed="column.fixed":render-header="column['render-header']":sortable="column.sortable":sort-method="column['sort-method']":sort-by="column['sort-by']":sort-orders="column['sort-orders']":resizable="column.resizable":formatter="column.formatter":show-overflow-tooltip="column['show-overflow-tooltip']":align="column.align":header-align="column['header-align']":class-name="column['class-name']":label-class-name="column['label-class-name']":selectable="column.selectable":reserve-selection="column['reserve-selection']":filters="column.filters":filter-placement="column['filter-placement']":filter-multiple="column['filter-multiple']":filter-method="column['filter-method']":filtered-value="column['filtered-value']"><!-- (START) 当slot-header有值时使用插槽类型 --><template v-if="column['header-slot']" #header="scope"><slot name="header" :row="scope.row"></slot></template><!-- (END) 当slot-header有值时使用插槽类型 --><!-- (START) 当slot有值时使用插槽类型 --><template v-if="column.slot" #default="scope"><slot name="default" :row="scope.row"></slot></template><!-- (END) 当slot有值时使用插槽类型 --></el-table-column>
</template>
<script lang="ts" setup>
import { PropType } from 'vue'
import { columnsTypes } from '@/interface/ATable'
defineProps({column: {type: Object as PropType<columnsTypes>,default: () => {},},
})
</script>
3、ATable、ATableColumn类型 - interface.ts
import { TableColumnCtx } from 'element-plus/es/components/table/src/table-column/defaults'
import { RendererElement, RendererNode, VNode } from 'vue'export interface configTypes {loading?: boolean'element-loading-text'?: string'element-loading-spinner'?: string'element-loading-svg'?: string'element-loading-background'?: stringappend?: string/*** table 列表的高度*/height?: string | number/*** table 列表的最大高度*/'max-height'?: string | number/*** 是否开启斑马线*/stripe?: boolean/*** 是否开启table的border*/border?: boolean/*** table 列表的大小*/size?: 'large' | 'default' | 'small'/*** table 列是否自动撑开*/fit?: boolean/*** table 列表是否展示表头*/'show-header'?: boolean/*** 当前行的 key值*/'current-row-key'?: string | number/*** 是否高亮当前行*/'highlight-current-row'?: boolean/*** 行的className*/'row-class-name'?: string | ((row: any) => string)/*** 单元格的className*/'cell-class-name'?: string | ((row: any) => string)/*** 表头行的className*/'header-row-class-name'?: string | ((row: any) => string)/*** 表头单元格的className*/'header-cell-class-name'?: string | ((row: any) => string)/*** 行数据的 Key*/'row-key'?: string | ((row: any) => string)/*** 没有数据时的提示文字*/'empty-text'?: string/*** 是否默认展开所有行*/'default-expand-all'?: boolean/*** 	默认的排序列的 prop 和顺序*/'default-sort'?: {prop: stringorder?: 'ascending' | 'descending'}/*** 	tooltip effect 属性*/'tooltip-effect'?: 'dark' | 'light'/*** 是否在表尾显示合计行*/'show-summary'?: boolean/*** 合计行第一列的文本*/'sum-text'?: string/*** 自定义的合计计算方法*/'summary-method'?: (row: any) => {}/*** 合并行或列的计算方法*/'span-method'?: (row: any) => {}/*** 在多选表格中,当仅有部分行被选中时,点击表头的多选框时的行为。* 若为 true,则选中所有行;若为 false,则取消选择所有行*/'select-on-indeterminate'?: boolean/*** 展示树形数据时,树节点的缩进*/indent?: number/*** 	是否懒加载子节点数据*/lazy?: boolean/**** 加载子节点数据的函数*/load?: (row: any, treeNode: any, resolve: any) => {}/*** 渲染嵌套数据的配置选项*/'tree-props'?: { hasChildren: string; children: string }
}export interface columnsTypes {slot?: string'header-slot'?: stringtype?: 'index' | 'selection' | 'expand'index?: number | ((index: number) => number)label?: string'column-key'?: stringprop?: stringwidth?: string | number'min-width'?: string | numberfixed?: 'left' | 'right''render-header'?: (data: {column: TableColumnCtx<any>$index: number}) => VNode<RendererNode, RendererElement, { [key: string]: any }>sortable?: true | false | 'custom''sort-method'?: (a: any, b: any) => number'sort-by'?: ((row: any, index: any) => string) | string | string[]'sort-orders'?: any[]resizable?: booleanformatter?: (row: any, column: any, cellValue: any, index: any) => any'show-overflow-tooltip'?: booleanalign?: 'left' | 'center' | 'right''header-align'?: 'left' | 'center' | 'right''class-name'?: string'label-class-name'?: stringselectable?: (row: any, index: any) => boolean'reserve-selection'?: booleanfilters?: any[]'filter-placement'?:| 'top'| 'top-start'| 'top-end'| 'bottom'| 'bottom-start'| 'bottom-end'| 'left'| 'left-start'| 'left-end'| 'right'| 'right-start'| 'right-end''filter-multiple'?: boolean'filter-method'?: (value: any, row: any, column: any) => boolean'filtered-value'?: any[]
}

二、ATable、ATableColumn组件的使用

<template><div class="table_box card"><el-button class="table_btn" @click="setCurrent()">Clear selection</el-button><a-tableclass="table_cont"ref="singleTableRef"@current-change="handleCurrentChange":config="config":columns="columns":dataSource="luckList"><template #sex="scope">{{ scope.row.sex == 0 ? '男' : '女' }}</template><template #operation="scope"><el-button @click="setCurrent(luckList[1])">Select second row</el-button></template></a-table></div>
</template><script setup lang="ts">
import { reactive, ref } from 'vue'
import ATable from '@/components/ATable/index.vue'
import { columnsTypes, configTypes } from '@/components/ATable/interface'// 活动列表每一列的配置信息
const columns: columnsTypes[] = [{prop: 'name',label: '用户',align: 'center',width: 100},{slot: 'sex',label: '性别',align: 'center'},{slot: 'operation',label: '操作',align: 'center',width: 350}
]
const config = reactive<configTypes>({stripe: true,border: true,fit: true,'highlight-current-row': true,size: 'large',loading: false
})// 福袋列表数据
const luckList = ref([{id: 1,name: '老李',sex: 0},{id: 2,name: '老王',sex: 1}
])
const currentRow = ref()
const singleTableRef = ref()const setCurrent = (row?) => {// table实例上方法的调用singleTableRef.value!.setCurrentRow(row)
}
// Table 事件的使用
const handleCurrentChange = (val) => {currentRow.value = val
}
</script><style scoped lang="scss">
.table_box {display: flex;flex-direction: column;margin-top: 10px;overflow-y: auto;.table_btn {margin-bottom: 20px;width: 200px;}.table_cont {flex: 1;}
}
.card {padding: 15px;background-color: #ffffff;border-radius: 5px;box-shadow: 3px 3px 3px #e1e0e0;
}
</style>

三、相关属性、方法的使用以及相关说明

1. Config Attributes

属性说明类型可选值默认值
heightTable的高度,默认为自动高度。如果height为number类型,单位px;如果height为string类型,则这个高度会设置为Table的style.height的值,Table的高度会受控于外部样式。string / number
max-heightTable 的最大高度。 合法的值为数字或者单位为px 的高度。string / number
stripe是否为斑马纹 tablebooleanfalse
border是否带有纵向边框booleanfalse
sizeTable 的尺寸stringlarge / default /small
fit列的宽度是否自撑开booleantrue
show-header是否显示表头booleantrue
highlight-current-row是否要高亮当前行booleanfalse
current-row-key当前行的 key,只写属性string / number
row-class-name行的 className的回调方法,也可以使用字符串为所有行设置一个固定的 classNamefunction({ row, rowIndex}) / string
cell-class-name单元格的 className的回调方法,也可以使用字符串为所有单元格设置一个固定的 classNamefunction({ row, column, rowIndexcolumnIndex}) / string
header-row-class-name表头行的 className的回调方法,也可以使用字符串为所有表头行设置一个固定的 className。function({ row, rowIndex }) / string
header-cell-class-name表头单元格的 className 的回调方法,也可以使用字符串为所有表头单元格设置一个固定的 className。function({ row, column, rowIndex, columnIndex }) / string
row-key

行数据的 Key,用来优化 Table 的渲染; 在使用reserve-selection功能与显示树形数据时,该属性是必填的。 类型为 String 时,支持多层访问:user.info.id,但不支持 user.info[0].id,此种情况请使Function

function(row) / string
empty-text空数据时显示的文本内容, 也可以通过 #empty 设置stringNo Data
default-expand-all是否默认展开所有行,当 Table 包含展开行存在或者为树形表格时有效booleanfalse
expand-row-keys可以通过该属性设置 Table 目前的展开行,需要设置 row-key 属性才能使用,该属性为展开行的 keys 数组。array
default-sort默认的排序列的 prop 和顺序。 它的 prop 属性指定默认的排序的列,order 指定默认排序的顺序objectorder: ascending / descending如果只指定了 prop, 没有指定 order, 则默认顺序是 ascending
tooltip-effecttooltip effect 属性stringdark / lightdark
show-summary是否在表尾显示合计行booleanfalse
sum-text合计行第一列的文本string合计
summary-method自定义的合计计算方法function({ columns, data })
span-method合并行或列的计算方法function({ row, column, rowIndex, columnIndex })
select-on-indeterminate在多选表格中,当仅有部分行被选中时,点击表头的多选框时的行为。 若为 true,则选中所有行;若为 false,则取消选择所有行booleantrue
indent展示树形数据时,树节点的缩进number16
lazy是否懒加载子节点数据boolean
load加载子节点数据的函数,lazy 为 true 时生效,函数第二个参数包含了节点的层级信息function(row, treeNode, resolve)
tree-props渲染嵌套数据的配置选项object{ hasChildren: 'hasChildren', children: 'children' }
table-layout设置用于布局表格单元格、行和列的算法stringfixed / autofixed

2. Table-slot

插槽名说明
append插入至表格最后一行之后的内容的插槽名称, 如果需要对表格的内容进行无限滚动操作,可能需要用到这个 slot。 若表格有合计行,该 slot 会位于合计行之上。无需声明可以直接使用。

3. Table Events

事件名说明回调参数
select当用户手动勾选数据行的 Checkbox 时触发的事件selection, row
select-all当用户手动勾选全选 Checkbox 时触发的事件selection
selection-change当选择项发生变化时会触发该事件selection
cell-mouse-enter当单元格 hover 进入时会触发该事件row, column, cell, event
cell-mouse-leave当单元格 hover 退出时会触发该事件row, column, cell, event
cell-click当某个单元格被点击时会触发该事件row, column, cell, event
cell-dblclick当某个单元格被双击击时会触发该事件row, column, cell, event
cell-contextmenu当某个单元格被鼠标右键点击时会触发该事件row, column, cell, event
row-click当某一行被点击时会触发该事件row, column, event
row-contextmenu当某一行被鼠标右键点击时会触发该事件row, column, event
row-dblclick当某一行被双击时会触发该事件row, column, event
header-click当某一列的表头被点击时会触发该事件column, event
header-contextmenu当某一列的表头被鼠标右键点击时触发该事件column, event
sort-change当表格的排序条件发生变化的时候会触发该事件{ column, prop, order }
filter-changecolumn 的 key, 如果需要使用 filter-change 事件,则需要此属性标识是哪个 column 的筛选条件filters
current-change当表格的当前行发生变化的时候会触发该事件,如果要高亮当前行,请打开表格的 highlight-current-row 属性currentRow, oldCurrentRow
header-dragend当拖动表头改变了列的宽度的时候会触发该事件newWidth, oldWidth, column, event
expand-change当用户对某一行展开或者关闭的时候会触发该事件(展开行时,回调的第二个参数为 expandedRows;树形表格时第二参数为 expanded)row, (expandedRows,expanded)

4. Table Methods

方法名说明参数
clearSelection用于多选表格,清空用户的选择
toggleRowSelection用于多选表格,切换某一行的选中状态, 如果使用了第二个参数,则是设置这一行选中与否(selected 为 true 则选中)row, selected
toggleAllSelection用于多选表格,切换全选和全不选
toggleRowExpansion用于可扩展的表格或树表格,如果某行被扩展,则切换。 使用第二个参数,您可以直接设置该行应该被扩展或折叠。row, expanded
setCurrentRow用于单选表格,设定某一行为选中行, 如果调用时不加参数,则会取消目前高亮行的选中状态。row
clearSort用于清空排序条件,数据会恢复成未排序的状态
clearFilter传入由columnKey 组成的数组以清除指定列的过滤条件。 不传入参数时用于清空所有过滤条件,数据会恢复成未过滤的状态columnKeys
doLayout对 Table 进行重新布局。 当 Table 或其祖先元素由隐藏切换为显示时,可能需要调用此方法
sort手动对 Table 进行排序。 参数 prop 属性指定排序列,order 指定排序顺序。prop: string, order: string

5. Column Attributes

属性说明类型可选值默认值
type对应列的类型。 如果设置了selection则显示多选框; 如果设置了index 则显示该行的索引(从 1 开始计算); 如果设置了expand 则显示为一个可展开的按钮stringselection / index / expand
index如果设置了 type=index,可以通过传递 index 属性来自定义索引number / function(index)
label列的表头名string
column-keycolumn 的 key, column 的 key, 如果需要使用 filter-change 事件,则需要此属性标识是哪个 column 的筛选条件string
prop字段名称 对应列内容的字段名string
width对应列的宽度string / number
min-width对应列的最小宽度, 对应列的最小宽度, 与 width 的区别是 width 是固定的,min-width 会把剩余宽度按比例分配给设置了 min-width 的列string / number
fixed列是否固定在左侧或者右侧string'left' / 'right'
render-header列标题 Label 区域渲染使用的 Functionfunction({ column, $index })
sortable对应列是否可以排序, 如果设置为 'custom',则代表用户希望远程排序,需要监听 Table 的 sort-change 事件boolean / stringtrue / false / 'custom'false
sort-method指定数据按照哪个属性进行排序,仅当sortable设置为true且没有设置sort-method的时候有效。 如果 sort-by 为数组,则先按照第 1 个属性排序,如果第 1 个相等,再按照第 2 个排序,以此类推function(a, b)
sort-by指定数据按照哪个属性进行排序,仅当 sortable 设置为 true 且没有设置 sort-method 的时候有效。 如果 sort-by 为数组,则先按照第 1 个属性排序,如果第 1 个相等,再按照第 2 个排序,以此类推function(row, index) / string / array
sort-orders数据在排序时所使用排序策略的轮转顺序,仅当 sortable 为 true 时有效。 需传入一个数组,随着用户点击表头,该列依次按照数组中元素的顺序进行排序array数组中的元素需为以下三者之一:ascending 表示升序,descending 表示降序,null 表示还原为原始顺序['ascending', 'descending', null]
resizable对应列是否可以通过拖动改变宽度(需要在 el-table 上设置 border 属性为真)booleanfalse
formatter用来格式化内容function(row, column, cellValue, index)
showOverflowTooltip当内容过长被隐藏时显示 tooltipbooleanfalse
align对齐方式stringleft / center / rightleft
header-align表头对齐方式, 若不设置该项,则使用表格的对齐方式stringleft / center / right
class-name列的 classNamestring
label-class-name当前列标题的自定义类名string
selectable仅对 type=selection 的列有效,类型为 Function,Function 的返回值用来决定这一行的 CheckBox 是否可以勾选function(row, index)
reserve-selection仅对 type=selection 的列有效, 请注意, 需指定 row-key 来让这个功能生效。是否保留上一个分页选中的数据。booleanfalse
filters数据过滤的选项, 数组格式,数组中的元素需要有 text 和 value 属性。 数组中的每个元素都需要有 text 和 value 属性。array[{ text, value }]
filter-placement过滤弹出框的定位stringtop/top-start/top-end/bottom/bottom-start/bottom-end/left/left-start/left-end/right/right-start/right-endbottom
filter-multiple数据过滤的选项是否多选booleantrue
filter-method数据过滤使用的方法, 如果是多选的筛选项,对每一条数据会执行多次,任意一次返回 true 就会显示。function(value, row, column)
filtered-value选中的数据过滤项,如果需要自定义表头过滤的渲染方式,可能会需要此属性。array

6. Table-column-slot

属性说明
slot自定义内容的插槽名,需要先在column里声明插槽名{ row, column, index }
header-slot自定义头部的插槽名,需要先在column里声明头部插槽名{ column, index }

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/476496.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

《数字图像处理基础》学习06-图像几何变换之最邻近插值法缩小图像

目录 一&#xff0c;概念 二&#xff0c;题目 三&#xff0c;matlab实现 对图像进行几何变换时&#xff0c;都是对数字图像进行处理。由于在matlab中使用imread函数读取的图像通常已经是数字图像&#xff0c;因此不需要进行额外的采样和量化等操作&#xff0c;就可以将图像…

TabNet 模型示例

代码功能 加载数据&#xff1a;从 UCI Adult Census 数据集中读取样本&#xff0c;进行清洗和编码。 特征处理&#xff1a;对分类特征进行标签编码&#xff0c;对数值特征进行标准化。 模型训练&#xff1a;使用 TabNet 模型对数据进行分类训练&#xff0c;采用早停机制提高效…

一次封装,解放双手:Requests如何实现0入侵请求与响应的智能加解密

引言 之前写了 Requests 自动重试的文章&#xff0c;突然想到&#xff0c;之前还用到过 Requests 自动加解密请求的逻辑&#xff0c;分享一下。之前在做逆向的时候&#xff0c;发现一般医院的小程序请求会这么玩&#xff0c;请求数据可能加密也可能不加密&#xff0c;但是返回…

锂电池学习笔记(一) 初识锂电池

前言 锂电池近几年一直都是很热门的产品&#xff0c;充放电管理更是学问蛮多&#xff0c;工作生活中难免会碰到&#xff0c;所以说学习锂电池是工程师的必备知识储备&#xff0c;今天学习锂电池的基本知识&#xff0c;分类&#xff0c;优缺点&#xff0c;循序渐进 学习参考 【…

《Vue零基础入门教程》第四课: 应用实例

往期内容 《Vue零基础入门教程》第一课&#xff1a;Vue简介 《Vue零基础入门教程》第二课&#xff1a;搭建开发环境 《Vue零基础入门教程》第三课&#xff1a;起步案例 参考官方文档 https://cn.vuejs.org/api/application#create-app 示例 const {createApp} Vue// 通…

介绍一下strncmp(c基础)

strncmp是strcmp的进阶版 链接介绍一下strcmp(c基础)-CSDN博客 作用 比较两个字符串的前n位 格式 #include <string.h> strncmp (arr1,arr2,n); 工作原理&#xff1a;strcmp函数按照ACII&#xff08;字符编码顺序&#xff09;比较两个字符串。它从两个字符串的第一…

Lucene(2):Springboot整合全文检索引擎TermInSetQuery应用实例附源码

前言 本章代码已分享至Gitee: https://gitee.com/lengcz/springbootlucene01 接上文。Lucene(1):Springboot整合全文检索引擎Lucene常规入门附源码 如何在指定范围内查询。从lucene 7 开始&#xff0c;filter 被弃用&#xff0c;导致无法进行调节过滤。 TermInSetQuery 指定…

【电路笔记 TMS320F28335DSP】时钟+看门狗+相关寄存器(功能模块使能、时钟频率配置、看门狗配置)

时钟源和主时钟&#xff08;SYSCLKOUT&#xff09; 外部晶振&#xff1a;通常使用外部晶振&#xff08;如 20 MHz&#xff09;作为主要时钟源。内部振荡器&#xff1a;还可以选择内部振荡器&#xff08;INTOSC1 和 INTOSC2&#xff09;&#xff0c;适合无需高精度外部时钟的应…

java 并发编程 (1)java中如何实现并发编程

目录 1. 继承 Thread 类 2. 实现 Runnable 接口 3. 使用 FutureTask 4. 使用 Executor 框架 5. 具体案例 1. 继承 Thread 类 概述&#xff1a;通过继承 Thread 类并重写其 run() 方法来创建一个新的线程。 步骤&#xff1a; 创建一个继承 Thread 类的子类。重…

巧用观测云可用性监测(云拨测)

前言 做为系统运维或者开发&#xff0c;很多时候我们需要能够实时感知我们所运维的系统和服务的情况&#xff0c;比如以下的场景&#xff1a; 系统上线前测试&#xff1a;包括功能完整性检查&#xff0c;确保页面元素&#xff08;如图像、视频、脚本等&#xff09;都能够正常…

python oa服务器巡检报告脚本的重构和修改(适应数盾OTP)有空再去改

Two-Step Vertification required&#xff1a; Please enter the mobile app OTPverification code: 01.因为巡检的服务器要双因子认证登录&#xff0c;也就是登录堡垒机时还要输入验证码。这对我的巡检查服务器的工作带来了不便。它的机制是每一次登录&#xff0c;算一次会话…

Unreal从入门到精通之如何绘制用于VR的3DUI交互的手柄射线

文章目录 前言实现方式MenuLaser实现步骤1.Laser和Cursor2.移植函数3.启动逻辑4.检测射线和UI的碰撞5.激活手柄射线6.更新手柄射线位置7.隐藏手柄射线8.添加手柄的Trigger监听完整节点如下:效果图前言 之前我写过一篇文章《Unreal5从入门到精通之如何在VR中使用3DUI》,其中讲…

Win11 22H2/23H2系统11月可选更新KB5046732发布!

系统之家11月22日报道&#xff0c;微软针对Win11 22H2/23H2版本推送了2024年11月最新可选更新补丁KB5046732&#xff0c;更新后&#xff0c;系统版本号升至22621.4541和22631.4541。本次更新后系统托盘能够显示缩短的日期和时间&#xff0c;文件资源管理器窗口很小时搜索框被切…

【数据结构】【线性表】【练习】反转链表

申明 该题源自力扣题库19&#xff0c;文章内容&#xff08;代码&#xff0c;图表等&#xff09;均原创&#xff0c;侵删&#xff01; 题目 给你单链表的头指针head以及两个整数left和right&#xff0c;其中left<right&#xff0c;请你反转从位置left到right的链表节点&…

【赵渝强老师】MySQL的慢查询日志

MySQL的慢查询日志可以把超过参数long_query_time时间的所有SQL语句记录进来&#xff0c;帮助DBA人员优化所有有问题的SQL语句。通过mysqldumpslow工具可以查看慢查询日志。 视频讲解如下&#xff1a; MySQL的慢查询日志 【赵渝强老师】MySQL的慢查询日志 下面通过具体的演示…

基于docker进行任意项目灵活发布

引言 不管是java还是python程序等&#xff0c;使用docker发布的优势有以下几点&#xff1a; 易于维护。直接docker命令进行管理&#xff0c;如docker stop、docker start等&#xff0c;快速方便无需各种进程查询关闭。环境隔离。项目代码任何依赖或设置都可以基本独立&#x…

Android 分区相关介绍

目录 一、MTK平台 1、MTK平台分区表配置 2、MTK平台刷机配置表 3、MTK平台分区表配置不生效 4、Super分区的研究 1&#xff09;Super partition layout 2&#xff09;Block device table 二、高通平台 三、展锐平台 四、相关案例 1、Super分区不够导致编译报错 经验…

数据库类型介绍

1. 关系型数据库&#xff08;Relational Database, RDBMS&#xff09;&#xff1a; • 定义&#xff1a;基于关系模型&#xff08;即表格&#xff09;存储数据&#xff0c;数据之间通过外键等关系相互关联。 • 特点&#xff1a;支持复杂的SQL查询&#xff0c;数据一致性和完整…

当产业经济插上“数字羽翼”,魔珐有言AIGC“3D视频创作大赛”成功举办

随着AI技术的飞速发展&#xff0c;3D数字人技术已成为驱动各行各业转型升级的重要力量。在这一背景下&#xff0c;2024山东3D数字人视频创作大赛应运而生&#xff0c;并在一番激烈的角逐后圆满落幕&#xff0c;为科技与创意的交融写下浓墨重彩的一笔。 11月20日&#xff0c;一…

经济增长初步

1.人均产出 人均产出&#xff0c;通常指的是一个国家、地区或组织在一定时期内&#xff0c;每个劳动人口平均创造的生产总值。它是衡量一个地区或国家经济效率和劳动生产率的重要指标。具体来说&#xff0c;人均产出可以通过以下公式计算&#xff1a; 人均产出总产出/劳动人口…