elementui-plus 动态表头没反应,未将正常的表头和表格内容展示出来

elementui-plus 动态表头没反应,未将正常的表头和表格内容展示出来

问题描述

elementui-plus 动态表头没反应,希望各位路过的大佬不吝赐教,谢谢

问题出现的环境背景及自己尝试过哪些方法

<template v-for="(item,index) in header" >

<el-table-column :key="index" :prop="item.prop" :label="item.label" align="center">

<template #default="scope">

<span>

{{scope.row[item.prop]}}

</span>

</template>

</el-table-column>

</template>

相关代码

粘贴代码文本(请勿用截图)

上述代码不起作用,没有将正常的表头和表格内容展示出来,希望各位路过的大佬不吝赐教,谢谢

你期待的结果是什么?实际看到的错误信息又是什么?

期待的结果就如同,elementui中的动态表头一样,下面是elementui中动态表头的写法:

<template v-for="(item ,index) in header">

<el-table-column

:label="item.label"

:key="index"

:prop="item.prop"

>

</el-table-column>

</template>

希望各位路过的大佬不吝赐教,谢谢

以上是 elementui-plus 动态表头没反应,未将正常的表头和表格内容展示出来 的全部内容, 来源链接: utcz.com/p/937083.html

回到顶部