build: update plugins
This commit is contained in:
@@ -63,9 +63,9 @@ const rules = reactive({
|
||||
const { register, elFormRef } = useForm()
|
||||
|
||||
const formValidation = () => {
|
||||
unref(elFormRef)
|
||||
?.validate()
|
||||
?.catch(() => {})
|
||||
unref(elFormRef)!.validate((isValid) => {
|
||||
console.log(isValid)
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
@@ -212,9 +212,9 @@ const addItem = () => {
|
||||
}
|
||||
|
||||
const formValidation = () => {
|
||||
unref(elFormRef)
|
||||
?.validate()
|
||||
?.catch(() => {})
|
||||
unref(elFormRef)!.validate((isValid) => {
|
||||
console.log(isValid)
|
||||
})
|
||||
}
|
||||
|
||||
const verifyReset = () => {
|
||||
|
||||
Reference in New Issue
Block a user