element-ui table组件的empty-text属性怎么没用?

1、想在表格没有数据的地方展示“暂无”,在文档中找到了empty-text,结果不好使是咋回事?

clipboard.png

数据中确实有一部分为空

clipboard.png

但是最后页面上还是什么都没有

clipboard.png

阅读 27.3k
3 个回答

你误解了empty-text的作用,empty-text是表格源数据为空时显示的内容效果是这种效果。
至于想实现你的需求也有很多种方式,比如这样

<el-table-column>
  <template slot-scope="{row}">
    {{ row.name || '暂无' }}
  </template>
</el-table-column>

谢邀~
看源码可以发现你理解错了。是data为空时,显示empty-text
ElementUI table源码

<div
    v-if="!data || data.length === 0"
    class="el-table__empty-block"
    ref="emptyBlock"
    :style="{
      width: bodyWidth
    }">
    <span class="el-table__empty-text">
      <slot name="empty">{{ emptyText || t('el.table.emptyText') }}</slot>
    </span>
 </div>

现在有个需求,是装载数据时,会先出来 "暂无数据", 再出现等待过程。暂时解决办法:

<template slot="empty">
    <div v-if="loading">
    </div>
    <div v-else>
       暂无数据
    </div>
</template>
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题