vue错误整理(一)

vue错误整理(一)

这里是一个vue小白的错误整理集

ivew 表单验证和Property or method 字段 is not defined on the instance but referenced during render.

vue错误整理(一)_第1张图片
找到"peopleShow"改成" ‘peopleShow’ "即可

Error in creater hook: "TypeError: Unable to get property ‘type’ of underfined or null reference

vue错误整理(一)_第2张图片
使用了未定义的type,需要先初始化

Missing required prop: “value”

vue错误整理(一)_第3张图片

在使用了标签后必须在下边使用的数据必须齐全

the computed property “fieds” is already definend in data.

vue错误整理(一)_第4张图片
Fields 在viewUI存在自己的表单验证,所以fields已经被声明,所以去掉自己添加的表单验证js即可
如:
vue错误整理(一)_第5张图片
将红框中的去掉即可

小白学习中 有时间就会更新,如有写错的请联系修改 Thanks♪(・ω・)ノ

你可能感兴趣的:(vue)