zoukankan      html  css  js  c++  java
  • elementUI el-table 表格头数据换行

    /*实现表格头数据换行*/
    .el-table .cell {
        /*text-align: center;*/
        white-space: pre-line;/*保留换行符*/
    }
    

      写法:   

                                  <el-table-column v-for="(item,index) in tableColums" :key="index"
                                                                         :prop="item.prop"
                                                                         :label="item.label"
                                                                         :width="item.width"
                                                                         align="center"
                                                                         show-overflow-tooltip>
                                                        </el-table-column>
      
                                   
                                   
                                   

      

    <el-table-column prop="name" :label="'数据
    单位'" align="center" show-overflow-tooltip></el-table-column>//
    第一种写法

      

    tableColums:[{prop:'name',label:'数据
    单位'}]//
    第二种写法

      

  • 相关阅读:
    运算优先级
    (5).plus(3).minus(2);
    画图
    函数的三种角色
    表格排序
    正则表达式
    call apply
    css文本属性和边框属性
    css颜色/字体/背景属性
    css选择器优先级及继承
  • 原文地址:https://www.cnblogs.com/dyy-dida/p/11276530.html
Copyright © 2011-2022 走看看