vue+Element-UI使用Table动态控制列宽

133 阅读1分钟

1、在列附上

:width="cloumnWith(index)"

例:

微信图片_20211027101000.png

2、用事件传值

cloumnWith(index){
    return 300;
},

微信图片_20211027101306.png

完美解决!!!