element UI el-tree 自定义 (改变字体颜色)

1.

 

 

2.

data:

defaultProps: {
  children: 'children',
  label: 'name'
},

methods:

//   判断 type     选择自己想要的样式   

renderContent(h, { node, data, store }) {
  return({node.label})
},

注意:renderContent中需要使用 jsx 语法

https://blog.csdn.net/weixin_33911824/article/details/93575421

3.

css:

.selling-category{
  color:#7195FA;
}
.seckill-category{
  color:#D874FA;
}
.common-category{
  color:#FC5D5D
}

你可能感兴趣的:(element-ui)