warning Prop “xxx“ is not in camelCase
问题记录:
出现该问题的原因是,在使用vue父子传值的过程中,对传值标识命名错误,没有准寻驼峰式命名规则
错误代码
//父
//子
const props = defineProps({LuckySheetId: {type: String,required: true},LuckySheetData: {type: Array,required: true}
})
修改为
//父//子 const props = defineProps({luckySheetId: {type: String,required: true},luckySheetData: {type: Array,required: true} })
本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!
