mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
25 lines
520 B
Markdown
25 lines
520 B
Markdown
|
<cn>
|
||
|
#### 其他字符
|
||
|
可以将星星替换为其他字符,比如字母,数字,字体图标甚至中文。
|
||
|
</cn>
|
||
|
|
||
|
<us>
|
||
|
#### Other Character
|
||
|
Replace the default star to other character like alphabet, digit, iconfont or even Chinese word.
|
||
|
</us>
|
||
|
|
||
|
```html
|
||
|
<template>
|
||
|
<div>
|
||
|
<a-rate allowHalf>
|
||
|
<a-icon slot="character" type="heart"/>
|
||
|
</a-rate>
|
||
|
<br />
|
||
|
<a-rate character="A" allowHalf style="fontSize: 36px"/>
|
||
|
<br />
|
||
|
<a-rate character="好" allowHalf/>
|
||
|
<br />
|
||
|
</div>
|
||
|
</template>
|
||
|
```
|