web-dev-qa-db-ja.com

Vee-Validateを使用して選択オプションを検証する方法

Vee-validatesのドキュメントを調べても、選択した入力を検証するための情報が何も表示されません。だから私の質問は、選択を検証できますか?現在、私が試したものはエラーメッセージを表示しません...

これがコードです

<select id="category" v-model="client.category" name="Category Type" v-validate="'required'">
  <option disabled>{{option}}</option>
  <option v-for="category in categories" :key="category.id" :value="category">{{ category }}</option>
 </select>
 <spanv-show="errors.has('Category Type')">{{ errors.first('Category Type') }}</span>
3
TJ Weems
v-model="client.category" 

v-modelが複雑なオブジェクトの場合、v-validateは機能しません。文字列/数値を使用してoption-> selectを結び、関数を使用してオブジェクトの残りの属性をモデル化します。

1
vamsi