ant-design-vue/antdv-demo/docs/rate/demo/character.md

25 lines
525 B
Markdown
Raw Normal View History

2021-03-12 07:48:30 +00:00
<cn>
#### 其他字符
可以将星星替换为其他字符,比如字母,数字,字体图标甚至中文。
</cn>
<us>
#### Other Character
Replace the default star to other character like alphabet, digit, iconfont or even Chinese word.
</us>
```vue
<template>
<div>
<a-rate allow-half>
<a-icon slot="character" type="heart" />
</a-rate>
<br />
<a-rate character="A" allow-half style="fontSize: 36px" />
<br />
<a-rate character="好" allow-half />
<br />
</div>
</template>
```