<docs>
---
order: 2
title:
zh-CN: 图标
en-US: Icon
## zh-CN
有图标的标签。
## en-US
The Tab with Icon.
</docs>
<template>
<a-tabs v-model:activeKey="activeKey">
<a-tab-pane key="1">
<template #tab>
<span>
<apple-outlined />
Tab 1
</span>
</template>
</a-tab-pane>
<a-tab-pane key="2">
<android-outlined />
Tab 2
</a-tabs>
<script lang="ts" setup>
import { AppleOutlined, AndroidOutlined } from '@ant-design/icons-vue';
import { ref } from 'vue';
const activeKey = ref('1');
</script>