naive-ui/demo/documentation/components/radio/enUS/buttonGroup.md
2020-03-03 12:40:05 +08:00

1.3 KiB

Button Group

Sometimes a radio button group looks more elegant.

<div style="margin-bottom: 12px;">
  <n-radio-group v-model="value" name="radiobuttongroup1">
    <n-radio-button
      v-for="song in songs"
      :key="song.value"
      :value="song.value"
      :disabled="(song.label === 'Live Forever' && disabled1 || song.label === 'Shakermaker' && disabled2)"
    >
      {{ song.label }}
    </n-radio-button>
  </n-radio-group>
</div>
<n-checkbox
  v-model="disabled2"
  style="margin-right: 12px;"
>
  Disable Shakemaker
</n-checkbox>
<n-checkbox
  v-model="disabled1"
>
  Disable Live Forever
</n-checkbox>
export default {
  data () {
    return {
      value: null,
      disabled2: false,
      disabled1: false,
      songs: [
        {
          value: 'Rock\'n\'Roll Star',
          label: 'Rock\'n\'Roll Star'
        },
        {
          value: 'Shakermaker',
          label: 'Shakermaker'
        },
        {
          value: 'Live Forever',
          label: 'Live Forever'
        },
        {
          value: 'Up in the Sky',
          label: 'Up in the Sky'
        },
        {
          value: '...',
          label: '...'
        }
      ].map(s => {
        s.value = s.value.toLowerCase()
        return s
      })
    }
  }
}