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

在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>

评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

这个站点使用 Akismet 来减少垃圾评论。了解你的评论数据如何被处理