logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue常见错误:Invalid prop: type check failed for prop “data“. Expected Array, got String with value‘‘ ‘‘

这个错误的意思是说:无效的命名数据:“数据”类型检查失败。期望数组,而不是字符串解决方案:因为返回的是一个数组,而我们绑定的变量是字符类型,修改变量类型即可

vue代码中写入debugger无效

最近在创建的项目中发现代码中使用debugger 断点调试代码无效 解决方法如图

vue常见错误:Property or method index is not defined on the instance but referenced during render

Property or method index is not defined on the instance but referenced during render翻译过来就是 “属性或方法索引未在实例上定义解决方法:查看自己的vue实例里的data和methods有没有定义对应的属性和方法检查自己的vue实例里是否存在两个及以上的data或methods,只能有一个data和methods.

到底了