diff --git a/docs/examples/switch.md b/docs/examples/switch.md
index 56a9c27b6..e8668600e 100644
--- a/docs/examples/switch.md
+++ b/docs/examples/switch.md
@@ -14,6 +14,9 @@ export default {
updateState(newState) {
console.log('changing');
this.switchState = newState;
+ },
+ handleClick() {
+ alert('click');
}
}
};
@@ -42,7 +45,7 @@ export default {
```html
Switch state: {{switchStateText}}
-
+
```
diff --git a/packages/switch/src/switch.vue b/packages/switch/src/switch.vue
index 9ae635efc..7c7d2fc0f 100644
--- a/packages/switch/src/switch.vue
+++ b/packages/switch/src/switch.vue
@@ -57,13 +57,6 @@ export default {
toggleState: function() {
if (this.disabled || this.loading) return;
this.onChange(!this.checked);
- },
-
- /*
- *
- */
- getState: function() {
- return this.checked;
}
}
};