ag-grid-vue表格的一些问题总结
1.表头居中和表格内容居中
找了很多资料也没有找到
在style标签中输入下面代码,就会居中。
/deep/ .ag-theme-balham [class^='ag-'],
.ag-theme-balham [class^='ag-']:focus,
.ag-theme-balham [class^='ag-']:after,
.ag-theme-balham [class^='ag-']:before {
text-align: center;
}
/deep/ .ag-header-cell-text{
text-align: c
- 1
- 2
- 3
前往页