How to prevent automatic sorting of tables when element ui clicks on the header

Table columns in the current project are sorted using sortable, and sort-change is monitored to fully sort the data of the entire table. But there are users who need to double-click the header to copy and paste, but this will trigger the sorting function of the table, turn to the gods, is there a solution to prevent clicking on the default sorting of the header

Feb.28,2021

add listening events, and doubleclick can prevent bubbling.
< div @ dblclick.stop= "doSomething ($event)" > vue cancel event bubbling < / div >

vue.js blocks default events

< div @ dblclick.prevent= "doSomething ($event)" > vue blocks default events < / div >

Menu