当前位置:网站首页>Render header usage of El table
Render header usage of El table
2022-07-02 02:45:00 【One plus one is not two】
el-table,:render-header
<template>
<el-table :data="tabledata" style="width: 100%" border>
<el-table-column prop="oldOrderBy" label=" Sort " :render-header="renderHeader">
</el-table-column>
<el-table-column prop="productName" label=" The product name "></el-table-column>
</el-table>
</template>
<script>
export default {
data() {
return {
tabledata: [],
isDragon:true
};
},
created() {
this.getTableData()
},
methods: {
renderHeader(h, { column }) {
return h('span', { style: { padding: '0' } },
[
h('span', { style: { paddingRight: '3px' } }, column.label),
h('a', {
style: { color: '#008AE1', fontSize: '12px' },
on: { click: () => { this.isDragon = false } },
props: { content: column.label },
}, ' edit ')
]
)
},
getTableData() {
this.tabledata = [{oldOrderBy:1,productName:' Product 1 '},
{oldOrderBy:2,productName:' Product 2 '}];
},
}
};
</script>
边栏推荐
- STM32F103 - two circuit PWM control motor
- Connected block template and variants (4 questions in total)
- LeetCode刷题(十)——顺序刷题46至50
- Provincial election + noi Part IV graph theory
- Pychart creates new projects & loads faster & fonts larger & changes appearance
- Start from scratch - Web Host - 01
- 结婚后
- 自定义组件的 v-model
- Summary of some experiences in the process of R & D platform splitting
- 使用开源项目【Banner】实现轮播图效果(带小圆点)
猜你喜欢

大厂裁员潮不断,双非本科出身的我却逆风翻盘挺进阿里

附加:信息脱敏;

Actual battle of financial risk control - under Feature Engineering

PHP notes - use Smarty to set public pages (include, if, else, variable settings)

LeetCode刷题(十)——顺序刷题46至50

AcWing 245. Can you answer these questions (line segment tree)

Feature query of hypergraph iserver rest Service
![[pit] how to understand](/img/e9/f5315a03b6f3da07021f915bb18af8.jpg)
[pit] how to understand "parameter fishing"

Analysis of FLV packaging format
![[staff] the direction of the symbol stem and the connecting line (the symbol stem faces | the symbol stem below the third line faces upward | the symbol stem above the third line faces downward | the](/img/fe/d97b25f702bbc05f941d08147259e0.jpg)
[staff] the direction of the symbol stem and the connecting line (the symbol stem faces | the symbol stem below the third line faces upward | the symbol stem above the third line faces downward | the
随机推荐
【带你学c带你飞】day 5 第2章 用C语言编写程序(习题2)
What kind of good and cost-effective Bluetooth sports headset to buy
essay structure
Addition without addition, subtraction, multiplication and division (simple difficulty)
【OpenCV】-5种图像滤波的综合示例
C # use system data. The split mixed mode assembly is generated for the "v2.0.50727" version of the runtime, and it cannot be loaded in the 4.0 runtime without configuring other information
Email picture attachment
How to turn off the LED light of Rog motherboard
Build a modern data architecture on the cloud with Amazon AppFlow, Amazon lake formation and Amazon redshift
Pat a-1165 block reversing (25 points)
buu_ re_ crackMe
【无标题】
CVPR 2022 | 大连理工提出自校准照明框架,用于现实场景的微光图像增强
Provincial election + noi Part IV graph theory
MySQL operates the database through the CMD command line, and the image cannot be found during the real machine debugging of fluent
New programmer magazine | Li Penghui talks about open source cloud native message flow system
2022-2028 global soft capsule manufacturing machine industry research and trend analysis report
离婚3年以发现尚未分割的共同财产,还可以要么
2022-2028 global nano abrasive industry research and trend analysis report
Start from scratch - Web Host - 01