Element UI implements multiple tables scrolling at the same time, horizontally and vertically The code is as follows: <script src="//unpkg.com/vue/dist/vue.js"></script> <script src="//unpkg.com/[email protected]/lib/index.js"></script> <div id="app"> <template> <el-table ref="table1" border="10" height="150" :data="tableData" style="width: 800px"> <el-table-column prop="date" label="Date" width="300"> </el-table-column> <el-table-column prop="name" label="Name" width="300"> </el-table-column> <el-table-column width="300px" prop="address" label="Address"> </el-table-column> <el-table-column width="300px" prop="address" label="Address"> </el-table-column> </el-table> <br/> <el-table ref="table2" border="10" height="150" :data="tableData" style="width: 800px"> <el-table-column prop="date" label="Date" width="300"> </el-table-column> <el-table-column prop="name" label="Name" width="300"> </el-table-column> <el-table-column width="300px" prop="address" label="Address"> </el-table-column> <el-table-column width="300px" prop="address" label="Address"> </el-table-column> </el-table> </template> </div> var Main = { data() { return { tableData: [{ date: '2016-05-02', name: 'Wang Xiaohu', address: 'Shanghai' }, { date: '2016-05-04', name: 'Wang Xiaohu', address: 'Shanghai' }, { date: '2016-05-04', name: 'Wang Xiaohu', address: 'Shanghai' }, { date: '2016-05-04', name: 'Wang Xiaohu', address: 'Shanghai' }], dom1: null, dom2: null } }, mounted() { this.dom1 = this.$refs.table1.bodyWrapper this.dom2 = this.$refs.table2.bodyWrapper this.listenerScroll() }, methods: { listenerScroll() { this.dom2.addEventListener('scroll', () => { // Scroll this.dom1.scrollLeft = this.dom2.scrollLeft // Vertical scroll this.dom1.scrollTop = this.dom2.scrollTop }) } } } var Ctor = Vue.extend(Main) new Ctor().$mount('#app') This is the end of this article about how to achieve synchronized scrolling of multiple element tables. For more information about synchronized scrolling of element tables, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of the Docker deployment tutorial for Jenkins beginners
>>: Explanation of the execution priority of mySQL keywords
<br />Since the Ministry of Foreign Affairs ...
The World Wide Web Consortium (W3C) has released a...
Before reading this article, I hope you have a ba...
1. Introduction to Nginx Nginx is a web server th...
Preface The "destructuring assignment syntax...
Implementing process analysis (1) How to call rep...
answer from stackflow: Simply <br> is suffic...
1. Use Docker Compose to configure startup If you...
vertical-align attribute is mainly used to change...
1. Introduction When writing animation effects fo...
Related articles: Beginners learn some HTML tags ...
Note: The third method is only used in XSell and ...
This article will introduce some commonly used ar...
Border Style The border-style property specifies ...
1. Write a split script (splitNginxLog.sh) * Beca...