1
1

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 3 years have passed since last update.

BootstrapVueでb-form-selectの中のoptionに個別にCSSをあてる

Last updated at Posted at 2021-03-12

はじめに

BootstrapVueを使用していて、プルダウンの中の色を条件によって変えたくなったけど方法がよくわからなかったので備忘録。

私の場合、個別にグレーアウトにしたくて、まず公式リファレンスを見たんですけど…

disabledには簡単にできるみたいですけど、私は色を変えたいだけなんですよ。
そんなことしたいと思わないですよね。うんうん。。
私はしたい。

こんなかんじに。
image.png

やり方

たぶん普通にプルダウンリストを出すと、こんな書き方するんじゃないかな~と思います。
簡潔でらくちんですよね。これにCSSあてられたらよかったんですけど…

<b-form-select
    :options="testlist"
    value-field="testId"
    text-field="testNm"></b-form-select>

でもこれだと中身のoptionタグにクラスを持たせられないので、下記のようにoptionを分けてかきます。
そうするとclassをあてられるようになるので。
Vue.jsのガイドにあるこれですね。

そう、べた書きです。

<b-select>
    <option :class="{ 'select-option': changeColor(v.testId) }"
    :value="v.testId"
    v-for="(v, i) in testList"
    :key="i" >
    {{v.testNm}}
    </option>
</b-select>

こう書いたらあとはあてたいCSSを書いて、

.select-option {
    background-color: #e2e6ea;
    color: rgb(108, 117, 125);
}

条件書いて(これはテスト用なので好きに書いてね)、

changeColor(testId){
  if (testId == 2){
    return true;
  }
  return false;
}

おしまい!
以下雑なテストデータ。適当に試してね。

testList:[
    {testId: 0, testNm: ''},
    {testId: 1, testNm: '白'},
    {testId: 2, testNm: '灰'},
    {testId: 3, testNm: '白'},
    {testId: 4, testNm: '白'},
]
1
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?