如何以编程方式确定Buefy输入字段是否有错误?

时间:2018-03-10 17:12:01

标签: vuejs2

我正在研究Buefy输入字段并查找可以告诉我任何表单字段是否有任何错误的方法。 Buefy Input Documentation

                          <b-field horizontal label="Title">
                          <b-input
                              v-model="model.title"
                              name="title"
                              type="text"
                              minlength="10"
                              required>
                          </b-input>
                      </b-field>

                      <b-field horizontal label="Description">
                          <b-input
                              v-model="model.description"
                              name="description"
                              type="textarea">
                          </b-input>
                      </b-field>

如果没有可用的方法,那么我们如何编写自定义方法来确定它。它将有助于在其他用例中禁用提交方法等。

1 个答案:

答案 0 :(得分:0)

现在有一个扩展名,用于标记输入缺失/无效。 https://buefy.org/extensions/veevalidate/

否则,应在Vue组件方法的Vue.js端进行自定义验证。