Browse Source

fix switch

pull/165/head
wangxueliang 7 years ago
parent
commit
a620759598
  1. 4
      components/switch/index.en-US.md
  2. 4
      components/switch/index.zh-CN.md
  3. 4
      components/vc-switch/Switch.vue
  4. 2
      examples/routes.js

4
components/switch/index.en-US.md

@ -10,6 +10,10 @@
| loading | loading state of switch | boolean | false |
| size | the size of the `Switch`, options: `default` `small` | string | default |
| unCheckedChildren | content to be shown when the state is unchecked | string\|slot | |
### events
| Events Name | Description | Arguments |
| --- | --- | --- |
| change | a callback function, can be executed when the checked state is changing | Function(checked:Boolean) | |
## Methods

4
components/switch/index.zh-CN.md

@ -10,6 +10,10 @@
| loading | 加载中的开关 | boolean | false |
| size | 开关大小,可选值:`default` `small` | string | default |
| unCheckedChildren | 非选中时的内容 | string\|slot | |
### 事件
| 事件名称 | 说明 | 回调参数 |
| --- | --- | --- |
| change | 变化时回调函数 | Function(checked:Boolean) | |
## 方法

4
components/vc-switch/Switch.vue

@ -15,8 +15,8 @@ export default {
props: {
...switchPropTypes,
prefixCls: switchPropTypes.prefixCls.def('rc-switch'),
checkedChildren: switchPropTypes.checkedChildren.def(null),
unCheckedChildren: switchPropTypes.unCheckedChildren.def(null),
checkedChildren: switchPropTypes.checkedChildren,
unCheckedChildren: switchPropTypes.unCheckedChildren,
defaultChecked: switchPropTypes.defaultChecked.def(''),
// onChange: switchPropTypes.onChange.def(noop),
// onClick: switchPropTypes.onClick.def(noop),

2
examples/routes.js

@ -3,7 +3,7 @@ const AsyncComp = () => {
const hashs = window.location.hash.split('/')
const d = hashs[hashs.length - 1]
return {
component: import(`../components/input/demo/${d}`),
component: import(`../components/switch/demo/${d}`),
}
}
export default [

Loading…
Cancel
Save