1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

vue.js element-ui el-radio-group fill 色の設定!

Posted at

背景##

vue.js element-ui el-radio-group で ラジオボタングループの色 を変更したい!

問題##

下記コードのように https://element.eleme.cn/#/en-US/component/radio からのコードはそのままに、
el-radio-groupに fill='#4c993a' を追加しても、効かない!!! blueのままだ!

test1.vue
<el-radio-group fill='#4c993a' v-model="radio1" @change='changeValue'>
    <el-radio  :label="1" border>りんご</el-radio>
    <el-radio  :label="2" border>なし</el-radio>
</el-radio-group>

解決策##

なんで?!!!
色々調べみたら、、、!

<el-radio> </el-radio> ではなく、、、

<el-radio-button> </el-radio-button> だ!!!!

test2.vue
<el-radio-group fill='#4c993a' v-model="radio1" @change='changeValue'>
    <el-radio-button  :label="1" border>りんご</el-radio-button>
    <el-radio-button  :label="2" border>なし</el-radio-button>
</el-radio-group>

イメージ図##

スクリーンショット 2019-12-10 10.29.42.png

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?