<input class="uk-input uk-form-width-large" id="name" name="name" autofocus="autofocus" v-validate data-rules="required" @input="handleValidate($event)" v-model="current.name">
问题:输入不上内容
原因:input的初始值要保证为一个字符串,不可以是 undefined
<input class="uk-input uk-form-width-large" id="name" name="name" autofocus="autofocus" v-validate data-rules="required" @input="handleValidate($event)" v-model="current.name">
问题:输入不上内容
原因:input的初始值要保证为一个字符串,不可以是 undefined
本文标题:vee-validate使用
本文链接:https://www.haomeiwen.com/subject/xpggkqtx.html
网友评论