mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-02 20:18:22 +08:00
445 B
445 B
#### 图标
有图标的标签。
#### Icon
The Tab with Icon.
<template>
<a-tabs defaultActiveKey="2">
<a-tab-pane key="1">
<span slot="tab">
<a-icon type="apple" />
Tab 1
</span>
Tab 1
</a-tab-pane>
<a-tab-pane key="2">
<span slot="tab">
<a-icon type="android" />
Tab 2
</span>
Tab 2
</a-tab-pane>
</a-tabs>
</template>