Property "rules" was accessed during render but is not defined on instance.

867 阅读1分钟

项目中经常出现警告Property "xxx" was accessed during render but is not defined on instance.说明xxx没有定义就在某个地方用了。xxx可以是属性也可以是方法。 在这里插入图片描述 在这里插入图片描述 表单用了验证规则,却还没有定义rules,在data中添加rules即可: 在这里插入图片描述 警告解决。