bootstrap vue 文档中的这个示例是否错误/已过时?
Is this example from bootstrap vue documentation wrong / outdated?
在 bootstrap-vue 文档的这一页 https://bootstrap-vue.js.org/docs/reference/validation/ 上,他们给出了如何使用 vee-validate 的示例。
但是,他们的示例对我不起作用,因为我收到一条警告说 [vee-validate] A field is missing a "name" or "data-vv-name" attribute
。事实上,他们的示例中没有 name
或 data-vv-name
属性,添加其中一个后,它就像一个魅力。
这个例子是否过时/错误?
<b-form-input id="example-input-1" v-model="form.name" v-validate="{ required: true, min:2 }":state="validateState('form.name')" aria-describedby="input-1-live-feedback" placeholder="Enter name"enter code here></b-form-input>
文档已更新为需要名称属性而不是 v-model 绑定。
<input v-validate="'required|email'" type="email" name="email">
是的。这需要更新
在 bootstrap-vue 文档的这一页 https://bootstrap-vue.js.org/docs/reference/validation/ 上,他们给出了如何使用 vee-validate 的示例。
但是,他们的示例对我不起作用,因为我收到一条警告说 [vee-validate] A field is missing a "name" or "data-vv-name" attribute
。事实上,他们的示例中没有 name
或 data-vv-name
属性,添加其中一个后,它就像一个魅力。
这个例子是否过时/错误?
<b-form-input id="example-input-1" v-model="form.name" v-validate="{ required: true, min:2 }":state="validateState('form.name')" aria-describedby="input-1-live-feedback" placeholder="Enter name"enter code here></b-form-input>
文档已更新为需要名称属性而不是 v-model 绑定。
<input v-validate="'required|email'" type="email" name="email">
是的。这需要更新