<el-table :data="tables.slice((currentPage - 1) * pageSize, currentPage * pageSize)" border stripe>
<el-table-column type="index" label="#"></el-table-column>
<el-table-column v-for="(item, index) in columnList" :key="index" :prop="item.prop" :label="item.label">
<template slot-scope="scope">
<el-button type="text" @click="showDialogTableVisibleEmbed(scope.row)">{{ scope.row.item.label
}}</el-button>
</template>
</el-table-column>
</el-table>
这么写表格数据直接就获取不到了
showDialogTableVisibleEmbed方法: