mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
55 lines
1.3 KiB
Vue
55 lines
1.3 KiB
Vue
|
<template>
|
||
|
<el-table-v2
|
||
|
:columns="columns"
|
||
|
:data="data"
|
||
|
:row-height="40"
|
||
|
:width="700"
|
||
|
:height="400"
|
||
|
>
|
||
|
<template #overlay>
|
||
|
<div
|
||
|
class="el-loading-mask"
|
||
|
style="display: flex; align-items: center; justify-content: center"
|
||
|
>
|
||
|
<el-icon class="is-loading" color="var(--el-color-primary)" :size="26">
|
||
|
<loading-icon />
|
||
|
</el-icon>
|
||
|
</div>
|
||
|
</template>
|
||
|
</el-table-v2>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
import { Loading as LoadingIcon } from '@element-plus/icons-vue'
|
||
|
|
||
|
const generateColumns = (length = 10, prefix = 'column-', props?: any) =>
|
||
|
Array.from({ length }).map((_, columnIndex) => ({
|
||
|
...props,
|
||
|
key: `${prefix}${columnIndex}`,
|
||
|
dataKey: `${prefix}${columnIndex}`,
|
||
|
title: `Column ${columnIndex}`,
|
||
|
width: 150,
|
||
|
}))
|
||
|
|
||
|
const generateData = (
|
||
|
columns: ReturnType<typeof generateColumns>,
|
||
|
length = 200,
|
||
|
prefix = 'row-'
|
||
|
) =>
|
||
|
Array.from({ length }).map((_, rowIndex) => {
|
||
|
return columns.reduce(
|
||
|
(rowData, column, columnIndex) => {
|
||
|
rowData[column.dataKey] = `Row ${rowIndex} - Col ${columnIndex}`
|
||
|
return rowData
|
||
|
},
|
||
|
{
|
||
|
id: `${prefix}${rowIndex}`,
|
||
|
parentId: null,
|
||
|
}
|
||
|
)
|
||
|
})
|
||
|
|
||
|
const columns = generateColumns(10)
|
||
|
const data = generateData(columns, 200)
|
||
|
</script>
|