element表头设置背景色和居中显示

element表头设置背景色和居中显示_第1张图片
方法:在el-table中设置

:cell-style="cellClass"
:header-cell-style="headClass"

具体


          
            
              
            
          

          
          

          
          

          
          

          
          

          
          

          
          

          
          
        
	//背景色
    headClass() {
      return "background-color:#d0f0fc;color:#000000;";
    },
    //居中
    cellClass() {
     return 'text-align: center;'
    }

你可能感兴趣的:(css)