我正在寻找一个使用Element UI表组件而不必对所有列进行硬编码的示例。我看到的所有示例,包括official Element UI table docs都显示了模板中指定的每一列。
我正在尝试做这样的事情。在我的旧表格组件中,这为我提供了所有列和带有delete
按钮的额外结尾列。
<template>
<div v-if="tableData.length > 0">
<b-table striped hover v-bind:items="tableData" :fields=" keys.concat(['actions']) ">
<template slot="actions" slot-scope="row">
<b-btn size="sm" @click.stop="tableClick(row.item)" class="mr-1">
Delete
</b-btn>
</template>
</b-table>
</div>
</template>
相比之下,Element UI Table示例均使用多个重复的el-table-column
标签。由于在运行时加载具有不同列的数据,因此无法使用这种方法。
<template>
<el-table
:data="tableData"
style="width: 100%">
<el-table-column
prop="date"
label="Date"
width="180">
</el-table-column>
<el-table-column
prop="name"
label="Name"
width="180">
</el-table-column>
<el-table-column
prop="address"
label="Address">
</el-table-column>
</el-table>
</template>
我是一个初学者,正在努力了解如何通过el-table实现我的目标。
答案 0 :(得分:1)
您可以将列作为具有所需属性的对象数组,并使用v-for
在模板中对其进行迭代:
<template>
<el-table
:data="tableData"
style="width: 100%">
<el-table-column v-for="column in columns"
:key="column.label"
:prop="column.prop"
:label="column.label"
:formatter="column.formatter"
:min-width="column.minWidth">
</el-table-column>
<el-table-column fixed="right">
<template slot-scope="scope">
... your delete button or whatever here...
</template>
</el-table-column>
</el-table>
</template>
然后从某个地方获取列,例如,它们可能在数据中:
data() {
return {
columns: [
{
prop: 'date',
label: 'Date',
minWidth: 180px
},
{
prop: 'name',
label: 'Name',
minWidth: 180px
},
{
prop: 'address',
label: 'Address',
formatter: (row, col, cell, index) => this.addressFormatter(cell), //example of a formatter
},
],
};
},