Vite element-plus ts 表單驗證
types資料夾新增 forms.ts
1 | export interface ruleFormType { |
在使用的頁面載入
- 載入ruleFormType
- 載入ElForm,type定義ElForm
1 | import { ref, onMounted,watchEffect } from 'vue' |
驗證的規則與函式
一 密碼為空時,密碼不為空時驗證確認密碼
二 密碼與確認密碼不相同時
三 點擊送出沒有值時出現
四 重置表單
1 | <template> |