antd vue 树控件自动自定义展开收起图标(非数据渲染)

<a-tree
  show-icon
  :icon="getIcon"
  :tree-data="treeData"
>
</a-tree>
getIcon (props) {
  const { expanded } = props
  if (!props.children) {
    return <a-icon class="file" type="file-text" />
  }
  return <a-icon type={expanded ? 'folder-open' : 'folder'} theme="filled" style="color: #ffbf00;" />
},
上一篇:flask点滴


下一篇:常用SSH命令整理,记得保存!