0👍
you can use initialValue in the options object for v-decorator
<a-form-item>
<a-input
v-decorator="[
'name',
{ initialValue: user.email, rules: [{ type: 'name', required: true, message: 'Please use a valid name.' }] },
]"
placeholder="Name"
>
<a-icon slot="prefix" type="mail" style="color:rgba(0,0,0,.25)" />
</a-input>
</a-form-item>
Source:stackexchange.com