无木
2021-06-06 ee384b1fa7e387b3680e9d54cbe4a1e2f15ec750
fix(radio-button): fix RadioButton `disabled` support

fix #710
1个文件已修改
2 ■■■ 已修改文件
src/components/Form/src/components/RadioButtonGroup.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/Form/src/components/RadioButtonGroup.vue
@@ -5,7 +5,7 @@
<template>
  <RadioGroup v-bind="attrs" v-model:value="state" button-style="solid">
    <template v-for="item in getOptions" :key="`${item.value}`">
      <RadioButton :value="item.value">
      <RadioButton :value="item.value" :disabled="item.disabled">
        {{ item.label }}
      </RadioButton>
    </template>