LoginSignup
3
3

More than 3 years have passed since last update.

Vue.js ラジオボタンの選択状態でボタンを押せる・押せないを実装したいとき

Posted at

単純なradioボタンではなく、radioと連動して、buttonを活性・非活性にしたいときは、こうやると期待どおりに動きました。

公式のようにvalueをそのままやるとdata内でうまく値が連携されないようです。
:value(v-bind:value)でやるとうまくいきました。


<input type="radio" v-model="picked" :value="true">hoge
<input type="radio" v-model="picked" :value="false">fuga

<button :disabled="!picked">HOGE</button>
<button :disabled="picked">FUGA</button>

Vue.js
フォーム入力バインディング

3
3
3

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
3
3