fix(type): 修复类型检查错误

This commit is contained in:
PKC278
2025-12-30 01:47:45 +08:00
parent b98512789f
commit c5d1c5a468
7 changed files with 16 additions and 14 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
import type { ValidationRule } from 'vuetify/types/services/validation'
type ValidationRule = (value: any) => string | boolean
// 必输校验
export const requiredValidator: ValidationRule = (value: any) => {