代码如下:
<input type="text" name="attachmentName" class="form-control" v-model="caseAttachmentManage.attachmentName" autocomplete="off" placeholder="附件名称" v-validate="'required'" :class="{'input': true, 'is-danger': errors.has('attachmentName') }"/>
<span v-show="errors.has('attachmentName')" class="text-danger" >{{ errors.first('attachmentName') }}</span>
输入框输入不进去,求解决办法