當須要遍歷圖片時,不能直接使用prop綁定值,具體 代碼以下code
<el-table-column label="頭像" width="100"> <template scope="scope"> <img :src="scope.row.head_pic" width="40" height="40" class="head_pic"/> </template> </el-table-column>
注意:scope.row.head_pic 中的head_pic 就是日常咱們綁定在prop中的值blog
多張圖片圖片
<el-table-column prop="pictures" label="描述圖片">
<template scope="scope">
<img v-for="item in scope.row.pictures" :src="item" width="40" height="40" class="head_pic"/>
</template>
</el-table-column>it