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

embedded/2024/11/23 16:46:35/

目录

一、封装的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.ppmy.cn/embedded/139889.html

相关文章

MySQL中的CAST类型转换函数

CAST函数用于将值从一种数据类型转换为表达式中指定的另一种数据类型 语法 CAST(value AS datatype) AS关键字用于分隔两个参数&#xff0c;在AS之前的是要处理的数据&#xff0c;在AS之后的是要转换的数据类型 参数说明 value: 要转换的值 datatype: 要转换成的数据类型…

C++定义函数有多个形参,定义结构体作为形参

如题&#xff0c;在定义函数时有时会遇到该函数需要传递多个形参(>3)的情况&#xff0c;如果一个个列出来&#xff0c;不管是函数声明还是函数调用都会导致这一句很长很长&#xff0c;这种情况可以定义一个结构体包含这些参数&#xff0c;然后把结构体变量作为函数的形参&am…

「漏洞复现」ArcGIS 地理信息系统 任意文件读取漏洞

0x01 免责声明 请勿利用文章内的相关技术从事非法测试&#xff0c;由于传播、利用此文所提供的信息而造成的任何直接或者间接的后果及损失&#xff0c;均由使用者本人负责&#xff0c;作者不为此承担任何责任。工具来自网络&#xff0c;安全性自测&#xff0c;如有侵权请联系删…

如何使用 Vivado 从源码构建 Infinite-ISP FPGA 项目

如约介绍源码构建 Infinite-ISP 项目&#xff0c;其实大家等的是源码&#xff0c;所以中间过程简洁略过&#xff0c;可以直接翻到文末获取链接。 开源ISP&#xff08;Infinite-ISP&#xff09;介绍 构建工程 第一步&#xff0c;从文末或者下面链接获取源码 https://github.com/…

常用并发设计模式

避免共享的设计模式 不变性&#xff08;Immutability&#xff09;模式&#xff0c;写时复制&#xff08;Copy-on-Write&#xff09;模式&#xff0c;线程本地存储&#xff08;Thread-Specific Storage&#xff09;模式本质上都是为了避免共享。 1、使用时需要注意不变性模式…

使用llama.cpp进行量化和部署

git clone https://github.com/ggerganov/llama.cpp cd llama.cpp &#x1f5a5;️ CPU 版本 cmake -B build_cpu cmake --build build_cpu --config Release &#x1f5a5;️ CUDA 版本 cmake -B build_cuda -DLLAMA_CUDAON cmake --build build_cuda --config Release -j …

Spark RDD 的宽依赖和窄依赖

通俗地理解 Spark RDD 的 宽依赖 和 窄依赖&#xff0c;可以通过以下比喻和解释&#xff1a; 1. 日常生活比喻 假设你在管理多个团队完成工作任务&#xff1a; 窄依赖&#xff1a;每个团队只需要关注自己的分工&#xff0c;完成自己的任务。例如&#xff0c;一个人将纸张折好&…

人工智能的核心思想-神经网络

神经网络原理 引言 在理解ChatGPT之前&#xff0c;我们需要从神经网络开始&#xff0c;了解最简单的“鹦鹉学舌”是如何实现的。神经网络是人工智能领域的基础&#xff0c;它模仿了人脑神经元的结构和功能&#xff0c;通过学习和训练来解决复杂的任务。本文将详细介绍神经网络…