Element ui table组件slot自定义表头,数据无法响应刷新

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Element ui table组件slot自定义表头,数据无法响应刷新相关的知识,希望对你有一定的参考价值。

参考技术A 如题,这样使用data改变无法响应刷新

<template slot="header">
data
</template>
需要改成下面这样

<template #header>
data
</template>

或者
解决:添加slot- scope ="scope"
改为作用域插槽。

element-ui组件扩展 - 自定义confirm弹窗

参考技术A

我们都知道写一个下面的注册弹窗很简单,直接使用 dialog 就行了。

   

                                                                                  

 

                                                                                  

 以上就是注册弹窗的实现了!

   附上源码  https://pan.baidu.com/s/1SpEN60JqOWA90yQ_kLlADA

以上是关于Element ui table组件slot自定义表头,数据无法响应刷新的主要内容,如果未能解决你的问题,请参考以下文章

关于Element UI Table 的 slot-scope

关于Element UI Table 的 slot-scope

封装element-ui的table自定义表头组件

element ui table组件自定义合计栏,后台给的数据

Vue --自定义el-table-column头部的两种方法

vue+ element-ui el-table组件自定义合计(summary-method)坑