The el-table-column column in VUE is hidden

Scenes:

   On the list display page, I just want to hide a column alone, not dynamically hide it, so it is relatively simple. After checking a lot of articles, it is said that v-show cannot be used in el-table-column , and it does not work. I tried it with v-if, and it works very well. I hereby make a note.

Function realization:

Add on <el-table-column>

v-if="false"

 

 

Guess you like

Origin blog.csdn.net/weixin_43167662/article/details/129913327