dwqs / v2-table

A simple table component based Vue 2.x: https://dwqs.github.io/v2-table/
MIT License
100 stars 24 forks source link

unable to "select" content of a column #2

Closed rmi7 closed 6 years ago

rmi7 commented 6 years ago

I want to copy some content in a column in a row but I am unable to select any text in any row.

dwqs commented 6 years ago

yes, because I set the user-select style-rule to none for table-cell element:

.v2-table__cell {
    // ...
    user-select: none;
    // ...
}

you can override the style-rule to reach your aim.

rmi7 commented 6 years ago

thank you!