zoukankan      html  css  js  c++  java
  • Element header-row-style设置多个属性

    方式1:

        直接在标签上添加上属性值:

    <el-table
        :header-cell-style="{background:'#F3F4F7',color:'#555'}"
    ></el-table>

    方式2:

        在method里面写上方法:

    rowClass({ row, rowIndex}) {
        console.log(rowIndex) //表头行下标
        return 'background:#F3F4F7;color:#555' 
    }

        然后在el-table标签中使用方法:

    <el-table :header-cell-style="rowClass"></el-table>
  • 相关阅读:
    rebar
    namenode ha
    jmx
    doclint in jdk8
    maven source
    avd
    ccw-ide
    ST3使用
    Web worker
    离线web-ApplicationCache
  • 原文地址:https://www.cnblogs.com/muou2125/p/10112254.html
Copyright © 2011-2022 走看看