亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Vue中vee-validate插件怎么使用

發布時間:2022-05-05 17:45:53 來源:億速云 閱讀:296 作者:iii 欄目:大數據

本文小編為大家詳細介紹“Vue中vee-validate插件怎么使用”,內容詳細,步驟清晰,細節處理妥當,希望這篇“Vue中vee-validate插件怎么使用”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

1.安裝

npm i vee-validate@4.0.3

2.導入

import { Form, Field } from 'vee-validate'

3.定義校驗規則(最好是在utils文件夾中單獨封裝js文件導出)

// 創建js文件進行導出
export default {
  // 校驗項account
  account (value) {
    if (!value) return '不能為空'// 條件判斷,
    return true // 最后全部通過必須return true
  },
  password (value) {
    if (!value) return '請輸入密碼'
    if (!/^\w{6,24}$/.test(value)) return '密碼是6-24個字符'
    return true
  },
  mobile (value) {
    if (!value) return '請輸入手機號'
    if (!/^1[3-9]\d{9}$/.test(value)) return '手機號格式錯誤'
    return true
  },
  code (value) {
    if (!value) return '請輸入驗證碼'
    if (!/^\d{6}$/.test(value)) return '驗證碼是6個數字'
    return true
  },
  isAgree (value) {
    if (!value) return '請勾選同意用戶協議'
    return true
  }
}

4.使用Form組件配置校驗規則和錯誤對象 (form 和 Field都是從插件中按需導出)

// validation-schema="mySchema"  配置校驗規則
// v-slot:導出錯誤對象
<Form
  :validation-schema="mySchema"
  v-slot="{ errors }"
>
 <!-- 表單元素 -->
</Form>

<script>
  import schema from '@/utils/vee-validate-schema'
  setup () {
    // 表單對象數據
    const form = reactive({
      account: null, // 賬號
      password: null // 密碼
    })
    // 校驗規則對象
    const mySchema = {
      account: schema.account,
      password: schema.password
    }
    return { form, mySchema }
 } 
</script>

5.使用 Field 組件,添加表單項目校驗

//1. 把input改成 `Field` 組件,默認解析成input
//2. `Field` 添加name屬性,作用是指定使用schema中哪個校驗規則
//3. `Field`添加v-model,作用是提供表單數據的雙向綁定
//4. 發生表單校驗錯誤,顯示錯誤類名`error`,提示紅色邊框

<Field
      v-model="form.account"
      name="account" 
      type="text"
      placeholder="請輸入用戶名"
      :class="{ error: errors.account }" // 如果返回錯誤信息,為true 顯示類error
    />
    <!-- <input type="text" placeholder="請輸入用戶名" /> -->

6.補充表單數據和驗證規則數據

// 表單綁定的數據
const form = reactive({
  account: null, // 賬號
  password: null, // 密碼
  isAgree: true // 是否選中
})

// 聲明當前表單需要的校驗數據規則
const curSchema = reactive({
  account: schema.account, // 賬號
  password: schema.password, // 密碼
  isAgree: schema.isAgree // 是否選中
})

讀到這里,這篇“Vue中vee-validate插件怎么使用”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新营市| 广汉市| 昌乐县| 逊克县| 罗田县| 黎川县| 黎城县| 武威市| 和平县| 锡林郭勒盟| 高雄县| 卫辉市| 西乌珠穆沁旗| 巴彦淖尔市| 苗栗市| 天峨县| 金华市| 湟源县| 永济市| 嘉祥县| 邵东县| 西昌市| 丘北县| 平利县| 岚皋县| 井研县| 汉源县| 石台县| 弋阳县| 延寿县| 桓仁| 湘潭市| 广德县| 翁牛特旗| 民勤县| 永泰县| 喀喇| 樟树市| 施甸县| 江源县| 龙江县|