switch component docs

This commit is contained in:
cookfront 2017-02-10 16:43:16 +08:00
parent 71a5e0afa5
commit 29fb1c5845
2 changed files with 4 additions and 8 deletions

View File

@ -14,6 +14,9 @@ export default {
updateState(newState) {
console.log('changing');
this.switchState = newState;
},
handleClick() {
alert('click');
}
}
};
@ -42,7 +45,7 @@ export default {
```html
<div class="page-switch">
<span class="page-switch-text">Switch state: {{switchStateText}}</span>
<o2-switch class="page-switch-sample" :checked="switchState" :onChange="updateState"></o2-switch>
<o2-switch class="page-switch-sample" :checked="switchState" :on-change="updateState"></o2-switch>
<o2-switch class="page-switch-sample" :checked="false" :disabled="true"></o2-switch>
</div>
```

View File

@ -57,13 +57,6 @@ export default {
toggleState: function() {
if (this.disabled || this.loading) return;
this.onChange(!this.checked);
},
/*
*
*/
getState: function() {
return this.checked;
}
}
};