You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/switch/demo/basic.md

393 B

#### 基本用法 最简单的用法。 #### basic Usage The most basic usage.
<template>
  <div>
    <a-switch defaultChecked @change='onChange'/>
  </div>
</template>
<script>
  export default {
    data () {
      return {
      }
    },
    methods: {
      onChange(checked){
        console.log(`a-switch to ${checked}`);
      }
    },
  }
</script>