How to fix Warning: `getFieldDecorator` will override `value`,so please don't set `value and v-model` directly and use `setFieldsValue` to set it.? How to fix Warning: `getFieldDecorator` will override `value`,so please don't set `value and v-model` directly and use `setFieldsValue` to set it.? vue.js vue.js

How to fix Warning: `getFieldDecorator` will override `value`,so please don't set `value and v-model` directly and use `setFieldsValue` to set it.?


because I am new of ant-design-vue, after one day research, solution is change :value to v-model and remove value props in the child component

<template>    <a-input-group compact>        <a-select            v-model="type"            @change="handleTypeChange"        >            <a-select-option value="alipay">alipay</a-select-option>            <a-select-option value="bank">bank</a-select-option>        </a-select>        <a-input            v-model="number"            @change="handleNumberChange"        />    </a-input-group></template>