前端基础学习-自定义表格数据为空时的样式
作者:互联网
在使用element-ui时,如果表格数据为空,往往默认是暂无数据样式,部分需求需要再表格无数据时展示特定样式。
话不多说上效果
代码部分
主要是用插槽插入需要的页面样式
<template slot="empty">
<img width="200" height="200" src="@/assets/images/nullTable.png" alt="">
<div class="table_emptytxt">
<p>暂无数据</p>
</div>
</template>
标签:暂无,自定义,表格,样式,空时,数据 来源: https://blog.csdn.net/m0_47146037/article/details/112274025