uniapp报错:vue.runtime.esm.js:619 [Vue warn]: Invalid prop: type check failed for prop "count". Expected Number with value 1, got String with value "1".

  这是组件内报错,将Type类型改为[Number, String]即可

props: {
	count: {
		type: Number,
		default: 0
	},
}

改为

props: {
	count: {
		type: [Number, String],
		default: 0
	},
}

  

posted @ 2020-03-01 09:32  安然亦智  阅读(6708)  评论(0编辑  收藏  举报