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.

Vuetify+VeeValidateでラジオボタンにvalidationをかけるとき

Posted at

備忘録。

<v-radio-group
  v-model="catType"
  v-validate="'required'"
  :error-messages="errors.collect('catType')"
  name="catType">
  <p class="body-1">ねこの種類</p>
  <v-radio
    label="アメショ"
    value="as" />
  <v-radio
    label="ロシアンブルー"
    value="rb" />
</v-radio-group>

v-validate、error-messagesはボタンを囲っている「v-radio-group」に対して設定する。

※error-messages
 Vuetifyの場合、ここにエラー内容を入れると入力欄に紐づく形で表示される。

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?