You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/rate/demo/clear.md

21 lines
331 B

<cn>
#### 清除
支持允许或者禁用清除。
</cn>
<us>
#### Clear star
Support set allow to clear star when click again.
</us>
```html
<template>
<div>
<a-rate :defaultValue="3" /> allowClear: true
<br />
<a-rate :allowClear="false" :defaultValue="3" /> allowClear: false
<br />
</div>
</template>
```