Commit 36fa8d6d authored by superbiger's avatar superbiger Committed by 杨奕

Rate: fix a method name typo (#10688)

parent 5a003a13
<template> <template>
<div <div
class="el-rate" class="el-rate"
@keydown="handelKey" @keydown="handleKey"
role="slider" role="slider"
:aria-valuenow="currentValue" :aria-valuenow="currentValue"
:aria-valuetext="text" :aria-valuetext="text"
...@@ -277,7 +277,7 @@ ...@@ -277,7 +277,7 @@
} }
}, },
handelKey(e) { handleKey(e) {
let currentValue = this.currentValue; let currentValue = this.currentValue;
const keyCode = e.keyCode; const keyCode = e.keyCode;
if (keyCode === 38 || keyCode === 39) { // left / down if (keyCode === 38 || keyCode === 39) { // left / down
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment