feat: improve cursor

This commit is contained in:
陈嘉涵
2020-01-11 15:46:47 +08:00
parent 5cbb9e2998
commit 2eb680723d
33 changed files with 97 additions and 24 deletions
+8 -1
View File
@@ -201,7 +201,14 @@ export default createComponent({
render() {
return (
<div class={bem()} tabindex="0" role="radiogroup">
<div
class={bem({
readonly: this.readonly,
disabled: this.disabled
})}
tabindex="0"
role="radiogroup"
>
{this.list.map((status, index) => this.genStar(status, index))}
</div>
);