diff --git a/docs/examples/switch.md b/docs/examples/switch.md index e8668600e..400912c95 100644 --- a/docs/examples/switch.md +++ b/docs/examples/switch.md @@ -12,11 +12,7 @@ export default { }, methods: { updateState(newState) { - console.log('changing'); this.switchState = newState; - }, - handleClick() { - alert('click'); } } }; @@ -26,12 +22,15 @@ export default { @component switch { padding: 0 15px 15px; - @descendent sample { - margin: 0 15px; + @descendent wrapper { + margin: 30px; + width: 100px; + float: left; + text-align: center; } @descendent text { - margin-right: 20px; + margin: 20px 0; } } } @@ -44,9 +43,14 @@ export default { :::demo 样例代码 ```html
- Switch state: {{switchStateText}} - - +
+ +
{{switchStateText}}
+
+
+ +
OFF, DISABLED
+
``` @@ -55,17 +59,16 @@ export default { export default { data() { return { - switchState: false + switchState: true }; }, computed: { switchStateText() { - return this.switchState ? 'on' : 'off'; + return this.switchState ? ' ON' : 'OFF'; } }, methods: { updateState(newState) { - console.log('changing'); this.switchState = newState; } } @@ -77,7 +80,7 @@ export default { | 参数 | 说明 | 类型 | 默认值 | 可选值 | |-----------|-----------|-----------|-------------|-------------| -| checked | 开关状态 | boolean | false | true,false | -| loading | loading状态 | boolean | false | true,false | -| disabled | 禁用状态 | boolean | false | true,false | +| checked | 开关状态 | boolean | false | true, false | +| loading | loading状态 | boolean | false | true, false | +| disabled | 禁用状态 | boolean | false | true, false | | onChange | 回调 | function | function(){} | - | diff --git a/packages/switch/src/switch.pcss b/packages/switch/src/switch.pcss index 0ac3f03e4..38af63000 100644 --- a/packages/switch/src/switch.pcss +++ b/packages/switch/src/switch.pcss @@ -29,11 +29,17 @@ @when on { background-color: #44db5e; border-color: #44db5e; + @descendent node { + left: 0; + } } @when off { background-color: #fff; border-color: rgba(0, 0, 0, .1); + @descendent node { + right: 0; + } } @when loading { diff --git a/packages/switch/src/switch.vue b/packages/switch/src/switch.vue index 7c7d2fc0f..0b8413dce 100644 --- a/packages/switch/src/switch.vue +++ b/packages/switch/src/switch.vue @@ -1,6 +1,6 @@