关于vue.js:elementtable-无数据的时候把暂无数据-改成其他文字或图片

54次阅读

共计 504 个字符,预计需要花费 2 分钟才能阅读完成。

在 el-table 外面插入

<template v-slot:empty>
  <span style="color: #969799;">No more data</span>
</template>
<el-table :data="tableData" style="width: 100%" :header-cell-style="{background:'#F0F2F5',color:'#585858',textAlign:'center'}" >
   <template v-slot:"empty">
      <span style="color: #969799;">No more data</span>
   </template>
   <el-table-column prop="content" label="OrderId" min-width="100" show-overflow-tooltip> </el-table-column>
   <el-table-column prop="amount" label="amount" min-width="80" show-overflow-tooltip> </el-table-column>
</el-table>
正文完
 0