radio-group.vue 471 Bytes
<template>
  <div class="radio-group">
    <slot></slot>
  </div>
</template>

<script>
export default {
  name: 'Radio-Group',
  props: {
    value: {
      type: [String, Number]
    }
  },
  data() {
    return {
      labelList: []
    };
  },
  methods: {
    getLabels() {
      return this.$children.forEach(i => i.$options.name === 'Radio');
    },
    updateLabel() {
    }
  }
};
</script>

<style lang="scss" scoped>
.radio-group {
  display: flex;
}
</style>