如何设置element-ui树节点的高度?

时间:2019-02-04 13:24:00

标签: html element-ui

我在vue.js中使用element-ui,并希望将每个节点的高度设置为50。

我尝试过:

    <el-tree
        :data="container.children">
        <span height="50" slot-scope="{ node, data }"  class="custom-tree-node">
        node.label
        </span>
    </el-tree>

不幸的是,height属性被忽略。如何正确设置节点高度?

2 个答案:

答案 0 :(得分:0)

您可以尝试使用CSS:

.custom-tree-node {
  height: 50px;
}

答案 1 :(得分:0)

尝试

list1= [6,3,11,4]
[funct(x) for x in list1 ]