el-tree의 상위 노드에만 아이콘을 추가하려면 Vue.js에서 제공하는 범위 지정 슬롯 기능과 함께 node-key prop을 활용할 수 있습니다. 이를 달성하는 방법은 다음과 같습니다.
<code class="javascript"><template> <el-tree :data="treeData"> <span slot-scope="{ node, data }"> <i v-if="data.isParent" class="el-icon-folder-opened"></i> {{ node.label }} </span> </el-tree> </template> <script> export default { data() { return { treeData: [ { label: 'Parent Node 1', children: [ { label: 'Child Node 1' }, { label: 'Child Node 2' }, ], }, { label: 'Parent Node 2', children: [ { label: 'Child Node 3' }, { label: 'Child Node 4' }, ], }, ], }; }, }; </script></code>
예, isParent를 사용하여 el-tree의 상위 노드로 아이콘 배치를 제한할 수 있습니다.
속성. 이 속성은 트리의 각 노드에 대해 Vue.js가 제공하는 범위 슬롯 내에서 사용할 수 있습니다.isParent
property. This property is available within the scoped slot provided by Vue.js for each node in the tree.
The correct syntax to add icons specifically to parent nodes in el-tree is as follows:
<code class="html"><span slot-scope="{ node, data }"> <i v-if="data.isParent" class="el-icon"></i> {{ node.label }} </span></code>
In this syntax, you use the data.isParent
condition to check if the current node is a parent node. If it is, you can add an icon using the <i>
data.isParent
조건을 사용하여 현재 노드가 상위 노드인지 확인합니다. 그렇다면 <i>
요소를 사용하여 아이콘을 추가하고 원하는 아이콘 클래스를 지정할 수 있습니다.🎜위 내용은 el-tree는 상위 노드 앞에만 아이콘을 추가합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!