You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/tree/demo/customized-icon.vue

53 lines
1.2 KiB

<docs>
---
order: 6
title:
zh-CN: 自定义图标
en-US: Customize Icon
---
## zh-CN
可以针对不同的节点定制图标
## en-US
You can customize icons for different nodes.
</docs>
<template>
<a-tree v-model:selectedKeys="selectedKeys" :tree-data="treeData" show-icon default-expand-all>
<template #switcherIcon="{ switcherCls }"><down-outlined :class="switcherCls" /></template>
<template #icon="{ key, selected }">
<template v-if="key === '0-0'">
<smile-outlined />
</template>
<template v-else-if="key === '0-0-0'">
<smile-outlined />
</template>
<template v-else>
<frown-filled v-if="selected" />
<frown-outlined v-else />
</template>
</template>
</a-tree>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
import { DownOutlined, SmileOutlined, FrownOutlined, FrownFilled } from '@ant-design/icons-vue';
import type { TreeProps } from 'ant-design-vue';
const treeData: TreeProps['treeData'] = [
{
title: 'parent 1',
key: '0-0',
children: [
{ title: 'leaf', key: '0-0-0' },
{ title: 'leaf', key: '0-0-1' },
],
},
];
const selectedKeys = ref(['0-0-0']);
</script>