バリデーションチェック機能のついた簡単なフォームを作成しています。
ボタンを押すと、入力項目全てのバリデーションチェックを確認するために、
Vuetify にすでに備わっている関数のvalidation()というものを使用してみました。
しかし、この関数はありません??というエラーメッセージが表示され、うまくチェックをすることができません。
どなたかご教示いただけませんでしょうか?
環境はNuxt.js yarn typescriptです。
初心者の質問で大変恐縮ではございますがよろしくお願いいたします。
【validation()のエラーメッセージ】
Property 'validate' does not exist on type 'Vue | Element | Vue[] | Element[]'.
Property 'validate' does not exist on type 'Vue'.Vetur(2339)
Nuxt.js
1<template> 2 <v-form ref="validation_check"> 3 <v-container> 4 <v-row> 5 <v-col cols="12" sm="6" md="3"> 6 <v-text-field 7 label="name" 8 v-model="text" 9 :rules="[textValidation.required,textValidation.limit_lemgth]" 10 counter="10" 11 ></v-text-field> 12 </v-col> 13 </v-row> 14 <v-row> 15 <v-col cols="12" sm="6" md="3"> 16 <v-text-field 17 label="phone" 18 v-model="phone" 19 :rules="[textValidation.required,textValidation.text_length2]" 20 counter="7" 21 ></v-text-field> 22 </v-col> 23 </v-row> 24 <v-divider></v-divider> 25 <v-row> 26 <v-col cols="6"> 27 <v-btn @click="submit">submit</v-btn> 28 <span v-if="success">Congurats★Validation is no prob!!</span> 29 </v-col> 30 </v-row> 31 </v-container> 32 </v-form> 33</template> 34 35<script lang="ts"> 36import { Component, Vue } from "nuxt-property-decorator"; 37 38@Component({}) 39export default class form extends Vue { 40 text: string = ""; 41 phone?: number; 42 success:boolean=false; 43 44 textValidation={ 45 required:(v:string)=>!!v||'this is required', 46 limit_lemgth:(v:string)=>v.length<=10||'Name must be less than 10 characters', 47 text_length2:(v:string)=>v.length<=10||'Phone number must be less than 7 characters', 48 }; 49 50 submit(){ 51 if(this.$refs.validation_check.validate()){ 52 this.success=true 53 }else{ 54 this.success=false; 55 } 56 57} 58 59 60} 61</script> 62 63![画面上のエラーメッセージ](e2727625e3cde034df038e63c098c242.png)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/20 12:08
退会済みユーザー
2020/08/21 03:32