vuejs / Discussion

Vue.js discussion
167 stars 17 forks source link

Disable option in <select options="someoptions"></select> #414

Open Rastishka opened 9 years ago

Rastishka commented 9 years ago

Is it possible to set some of the options disabled using options attribute in 0.12.*? Like <option value="foo" disabled >Foo<option> in HTML?

yyx990803 commented 9 years ago

add disabled: true in the option data object.

Rastishka commented 9 years ago

Great, thank you. PS Is it mentioned somewhere in docs?