Table slot vue 的表格loading
时间: 2023-11-11 14:14:43 浏览: 108
Table slot vue 中的表格loading可以通过以下步骤实现:
1. 在 Table 组件中使用 slot="loading" 来定义一个 loading 插槽,例如:
```
<template>
<el-table :data="tableData" style="width: 100%">
<el-table-column prop="name" label="Name"></el-table-column>
<el-table-column prop="age" label="Age"></el-table-column>
<el-table-column prop="address" label="Address"></el-table-column>
<el-table-column label="Operations">
<template slot-scope="scope">
<el-button type="text" @click="handleEdit(scope.$index, scope.row)">Edit</el-button>
<el-button type="text" @click="handleDelete(scope.$index, scope.row)">Delete</el-button>
</template>
</el-table-column>
<template slot="loading">
<div class="loading-container">
<el-spinner></el-spinner>
</div>
</template>
</el-table>
</template>
```
2. 在 loading 插槽中定义一个 loading 容器,例如:
```
<template slot="loading">
<div class="loading-container">
<el-spinner></el-spinner>
</div>
</template>
```
3. 对 loading 容器进行样式设置,例如:
```
.loading-container {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
```
这样就可以在 Table slot vue 的表格中添加 loading 效果了。
阅读全文