slot-scope="scope" 插槽獲取當前對象
<el-table :data="tableData" :key="10000" @selection-change="selectChange" style="width: 100%;"> <el-table-column label="詳細" style="color: red;" width="150"> <template class="fei" slot-scope="scope"> <el-button size="mini" type="text" :bookId="bookId" @click="bookDetailMethod(scope.row.id)">詳情-詳情-詳情</el-button> </template> </el-table-column> </el-table>

