<a-form-item label="标题">
<a-input v-decorator="['title', { rules: [{ required: true, message: 'Please input your title!' }] }]" />
</a-form-item>
created() {
// this.form = JSON.parse(JSON.stringify(this.userInfo));
this.form.getFieldDecorator('title', {
initialValue: this.userInfo.title || '',
});
}