我正在尝试使文档提供的Vuelidate自定义验证器可以与我的Vutify一起使用
这是来自文档的代码行
const mustBeCool = (value) => value.indexOf('cool') >= 0
当我将其添加到验证器中时,它似乎不起作用
name: { required, minLength: minLength(4), mustBeCool }
这是CodePen
https://codepen.io/jamiebrs/pen/OKjXev?editors=1010
我想念什么?