This article example shares the specific code for implementing drop-down filtering in the element UI table for your reference. The specific content is as follows 1. In default-sort, prop passes in the field to be sorted (data returned by the interface or defined by yourself), and order represents the sorting, and descending order is used here <template> <el-table :data="tableData" style="width: 100%" empty-text="No data yet" ref="filterTable" > <el-table-column prop="deviceType" label="Device Type" show-overflow-tooltip column-key="deviceType" :filters="[ { text: 'Weather equipment', value: 1 }, { text: 'Emotional equipment', value: 0 }, ]" :filter-method="filterHandler" :filter-multiple="true" > <template slot-scope="scope"> <span v-if="scope.row.deviceType == 1">Weather monitoring equipment</span> <span v-if="scope.row.deviceType == 0">Collapse monitoring equipment</span> <span></span> </template> </el-table-column> </el-table> </template> methods: { // Header filtering event filterHandler(value, row, column) { const property = column["property"]; return row[property] === value; } } Data Types Page Effects The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: A permanent solution to MYSQL's inability to recognize Chinese
>>: Add ico mirror code to html (favicon.ico is placed in the root directory)
<br />I'm basically going crazy with thi...
The meta tag is used to define file information an...
MySQL version 5.0 began to support stored procedu...
First look at the code and effect↓ <style> ...
In HTML, common URLs are represented in a variety ...
Table of contents Preface start Basic layout Data...
Preface Based on my understanding of MySQL, I thi...
This article example shares the specific code of ...
Table of contents Tutorial Series 1. User Managem...
1. Install cmake 1. Unzip the cmake compressed pa...
They are all web page templates from the foreign ...
Related knowledge points Passing values from pa...
This article example shares the specific code of ...
It is almost a standard feature for websites nowa...
Table of contents Preface On-site investigation C...