index.vue 527 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
/**
* @Author think
* @Date 2019-07-10 13:51
*/

<template>
  <section class="radio-group">
    <slot/>
  </section>
</template>

<script>
import radio from './radio'
export default {
  name: 'RadioGroup',
  component: { radio },
  props: {
    disable: {
      type: Boolean,
      default: false,
    },
  },
  data () {
    return {
      radioList: [],
    }
  },
  methods: {
    click (value) {
      this.$emit('input', value)
      this.$emit('radioClick', value)
    },
  },
}
</script>

<style lang="less">

</style>