Vue组件中表格文字内容太长,自动变省略号,鼠标悬浮上去显示全称。
组件中有一个属性可以进行控制:show-overflow-tooltip="true"
<el-table-column fixed prop="cityId" label="城市id" width="auto" > </el-table-column> <el-table-column fixed prop="order" label="order" width="auto"> </el-table-column> <el-table-column prop="hotelId" label="商品id" width="auto"> </el-table-column> <el-table-column prop="hotelName" label="商品名称" width="auto" :show-overflow-tooltip="true"> </el-table-column> //这样 对应的商品名称列 内容过长就会自动变省略号。