橘猫敲代码 2023-08-08 11:19 采纳率: 64.1%
浏览 78
已结题

elementui table 数据左对齐无效

数据不左对齐

  <el-table-column label="备注" prop="notes" width="120"  align="left">
          <template slot-scope="scope">
            <span style="white-space: pre-wrap;">
              {{ scope.row.notes }}
            </span>
          </template>
        </el-table-column>


img


LTL 飞神 60105569589 420 usd

img

  • 写回答

2条回答 默认 最新

  • 崽崽的谷雨 2023-08-08 11:30
    关注

    因为你加了 slot所以不生效需要自己写样式比如:

     <span style="white-space: pre-wrap; text-align: left;">
          {{ scope.row.notes }}
        </span>
    
    
    
    评论

报告相同问题?

问题事件

  • 已结题 (查看结题原因) 8月8日
  • 修改了问题 8月8日
  • 创建了问题 8月8日