ant-design-vue/components/vc-switch/demo/simple.vue

36 lines
710 B
Vue
Raw Normal View History

2018-02-27 04:14:29 +00:00
<script>
import VcSwitch from '../index'
import '../assets/index.less'
export default {
data () {
return {
disabled: false,
}
},
methods: {
toggle () {
this.disabled = !this.disabled
},
onChange (value) {
console.log(`switch checked: ${value}`); // eslint-disable-line
},
},
render () {
return (
<div style='margin: 20px'>
<VcSwitch
onChange={this.onChange}
disabled={this.disabled}
checkedChildren={'开'}
unCheckedChildren={'关'}
/>
<div style='margin-top: 20px'>
<button onClick={this.toggle}>toggle disabled</button>
</div>
</div>
)
},
}
</script>