<el-table
      :data="tableData"
      style="width: 100%"
      stripe= "true">

      <el-table-column
        type="selection"
        min-width="5%">
      </el-table-column>

      <el-table-column
        label="书名"
        min-width="55%">

        <template slot-scope="scope">
          <i class="el-icon-document"></i>
          <span style="margin-left: 10px">{{scope.row.name}}</span>
          <p>{{ scope.row.authors | join }}</p>
        </template>

      </el-table-column>


      <el-table-column
        prop="category"
        label="类别"
        min-width="20%">
      </el-table-column>


      <el-table-column
        prop="published"
        label="出版日期"
        min-width="20%"
        >
      </el-table-column>
    </el-table>
--------------------- 
作者:当白 
来源:CSDN 
原文:https://blog.csdn.net/dangbai01_/article/details/83623811 
版权声明:本文为博主原创文章,转载请附上博文链接!