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/radio/demo/radioGroup.md

562 B

#### 单选组合 一组互斥的 Radio 配合使用。 #### Radio Group A group of radio components.
<template>
  <a-radio-group @change="onChange" v-model="value">
    <a-radio :value="1">A</a-radio>
    <a-radio :value="2">B</a-radio>
    <a-radio :value="3">C</a-radio>
    <a-radio :value="4">D</a-radio>
  </a-radio-group>
</template>
<script>
export default {
  data () {
    return {
      value: 1,
    }
  },
  methods: {
    onChange (e) {
      console.log('radio checked', e.target.value)
    },
  },
}
</script>