mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
30 lines
793 B
Markdown
30 lines
793 B
Markdown
|
<cn>
|
||
|
#### 基本用法
|
||
|
使用 `<Icon />` 标签声明组件,指定图标对应的 `type` 属性。可以通过 `theme` 属性来设置不同的主题风格的图标,也可以通过设置 `spin` 属性来实现动画旋转效果。
|
||
|
</cn>
|
||
|
|
||
|
<us>
|
||
|
#### Basic
|
||
|
Use tag `<Icon />` to create an icon and set its type in the `type` prop. Specific the `spin` property to show spinning animation and the `theme` property to switch different themes.
|
||
|
</us>
|
||
|
|
||
|
```html
|
||
|
<template>
|
||
|
<div class="icons-list">
|
||
|
<a-icon type="home" />
|
||
|
<a-icon type="setting" theme="filled" />
|
||
|
<a-icon type="smile" theme="outlined" />
|
||
|
<a-icon type="sync" spin />
|
||
|
<a-icon type="loading" />
|
||
|
</div>
|
||
|
</template>
|
||
|
<style scoped>
|
||
|
.icons-list >>> .anticon {
|
||
|
margin-right: 6px;
|
||
|
font-size: 24px;
|
||
|
}
|
||
|
</style>
|
||
|
```
|
||
|
|
||
|
|