vue 中 Type of the default value for data prop must be a function的解决方案
vue 中 Type of the default value for ‘data’ prop must be a function的解决方案vue官方文档搭配es6语法简单粗暴解决props: {dataList: {type: Object,default: () => ({a:1,b:2})}}
·
vue 中 Type of the default value for ‘data’ prop must be a function的解决方案
vue官方文档
搭配es6语法简单粗暴解决
props: {
dataList: {
type: Object,
default: () => ({
a:1,
b:2
})
}
}
更多推荐
已为社区贡献2条内容
所有评论(0)