This article mainly introduces how to add floating prompts to header icons in ElementUI tables, and shares them with you. The details are as follows: <el-table-column label="operation" fixed="right" :render-header="tableAction" width="120"> <!--scope is userList scope.row is the current row data--> <template slot-scope="scope"> <el-button @click="editCar(scope.row)" type="primary" icon="el-icon-edit" size="small" circle></el-button> <el-button @click="delCar(scope.row.carId)" type="danger" icon="el-icon-delete" circle size="small"></el-button> </template> </el-table-column> //Table operation prompt tableAction() { return this.$createElement('HelpHint', { props: { content: 'Edit vehicle/Delete vehicle' } }, 'operate'); }, Remember to import import HelpHint from '~/components/HelpHint/HelpHint.vue'; And introduce it in components HelpHint.vue component content <template> <span> <span style="margin-right: 8px"><slot></slot></span> <el-tooltip :content="content" :placement="placement"> <i class="el-icon-question" style="cursor: pointer;"></i> </el-tooltip> </span> </template> <script> export default { name: 'HelpHint', props: { placement: default: 'top' }, content: String, }, data() { return {} }, } </script> This is the end of this article about adding header icon floating prompts in ElementUI tables. For more relevant Element icon floating prompts, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: SQL to implement time series dislocation restoration case
>>: CSS3 realizes bouncing ball animation
If you don't want to use javascript control, t...
Achieve results Implementation Code html <div ...
Table of contents 1. Constructor and instantiatio...
WebRTC, which stands for Web Real-Time Communicat...
Table of contents 1. How to view the binary data ...
Table of contents 1. Basic SELECT statement 1. Qu...
Vertical table Vertical table splitting means spl...
An interesting discovery: There is a table with a...
template <el-table :data="dataList"&...
Deploy redis in docker First install Docker in Li...
Currently encountering such a problem My situatio...
Preface Starting from MySQL 5.7.11, MySQL support...
WeChat Mini Programs are becoming more and more p...
Table of contents 1. Create HTML structure 2. Cre...
Preface What is data type conversion? The default...