From 29fb1c5845aa1a7a3b3bc42f3983c78059e067b9 Mon Sep 17 00:00:00 2001 From: cookfront Date: Fri, 10 Feb 2017 16:43:16 +0800 Subject: [PATCH] switch component docs --- docs/examples/switch.md | 5 ++++- packages/switch/src/switch.vue | 7 ------- 2 files changed, 4 insertions(+), 8 deletions(-) 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; } } };