vue 中 Type of the default value for ‘data’ prop must be a function的解决方案

vue官方文档
在这里插入图片描述
搭配es6语法简单粗暴解决

props: {
  dataList: {
    type: Object,
    default: () => ({
    	a:1,
    	b:2
	})
  }
}
Logo

前往低代码交流专区

更多推荐