3👍
✅
if you use vee-validate: "^4.6.9"
and vue: "^3.2.39"
maybe can use this solution :
- add new atribute
:initial-values="formValues"
in tag form - then inside setup() add:
const formValues = {
yourFieldName: 'init value',
};
- still in setup() return { formValues }
this work for me 😀
Source:stackexchange.com