ant-design-vue/components/tabs/demo/icon.md

31 lines
446 B
Markdown

<cn>
#### 回标
æœ‰å›žæ ‡įš„æ ‡į­žã€‚
</cn>
<us>
#### Icon
The Tab with Icon.
</us>
```html
<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>
```