时间:2021-05-26
1、错误写法
demo:{ type:Array, default:[]}eslint语法报错:
Invalid default value for prop “demo”: Props with type Object/Array must use a factory function to return the default value.
2、正确的写法应该是:
demo: { type: Array, default: function () { return [] }}或是用箭头函数:
demo: { type: Array, default: () => []}3、对象的箭头函数写法:
demoObj: { type: Object, default: () => ({})}或是常规
demoObj: {type: Object,default: function () {return {}}}错误的写法
demoObj: () => {}
补充知识:vue 传参props里面为什么要带type,还有default?
这个是子组件啦 ,写type的意思是swiperDate传过来的数据类型是数组,default就是表示不传默认返回的[ ],空数组.
这种就是表示传的数据类型是number,不传默认是0。
以上这篇vue props default Array或是Object的正确写法说明就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
我就废话不多说了,大家还是直接看代码吧~props:{array:{type:Array,default(){return[]}},object:{type:O
如下所示;props:{example:{type:Object,default(){},},},watch:{example:function(newVal,
uniapp代码exportdefault{props:{urlKey:{default:'url'},fileList:Array}}编译到微信小程序貌似不支
在使用vue导出时会有一个default关键字,下面举例说明下在导出时使用export和exportdefault的对应的imort写法的区别一、部分导出和部分
开发过程中,props的使用有两种写法://字符串数组写法constsubComponent={props:['name']}//对象写法constsubCom