fixed #212
This commit is contained in:
梁灏 2017-01-17 12:04:33 +08:00
parent 49d380cf99
commit fa0241a535
3 changed files with 70 additions and 30 deletions

View file

@ -43,7 +43,7 @@
{
[`${prefixCls}-disabled`]: this.disabled
}
]
];
}
},
methods: {
@ -61,9 +61,9 @@
[`${prefixCls}-star-full`]: full,
[`${prefixCls}-star-zero`]: !full
}
]
];
},
handleMousemove(value, event) {
handleMousemove(value) {
if (this.disabled) return;
if (this.allowHalf) {
@ -91,7 +91,7 @@
// this.currentValue = this.value;
this.hoverIndex = -1;
},
handleClick (value) {
handleClick () {
}
}