Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

gianmarx's avatar

firefox non compatibile con Vue Bootstrap

i created with vue bootstrap this:

<b-form-select v-model="pippo.level" :options=pippo_config.level" size="sm"
                           class="mt-3"></b-form-select>

[BootstrapVue warn]: BFormSelect - Setting prop "options" to an object is deprecated. Use the array format instead.

i get the following error, on chrome everything works here us. Come on, could I solve it?

0 likes
1 reply
richardhulbert's avatar
Level 6

You have a typo: :options="pippo_config.level"

If that is not the problem one thing I might try is to use a computed property that returns pippo_config.level as select_option.

computed:{
select_option(){
return pippo_config.level
}
}

and then

<b-form-select v-model="pippo.level" :options="select_option" size="sm"
                           class="mt-3"></b-form-select>

Please or to participate in this conversation.