antdV表单验证,失败回显

问题遇到的现象和发生背景

ant-design-vue中的form表单验证失败回填的东西怎么显示呀
项目用的antdv3.x以上的版本,用vue3写的,表单验证看了网上只能这样写,但是验证失败怎么回显呀


let refForm=ref()

const onFinishForm =  (modelstates: any) => {  
          
  refForm.value.validate().then(async()=>{
  await saveAw(modelstates.value)
  clear()
}).catch((err:any)=>{
  
})
    
  }

网上都翻遍了,大家写的都是console,我哭死,怎么展示呀

按照管网来写,总不会错