DEV Community

Discussion on: How to Vue - Props vs Data

Collapse
 
marwicha profile image
marwicha • Edited

if you read the style guide of vue js is not recommended to define props type like this, it's better to do it like this for example:
props: {
propName: {
type: Object,
required: true,
},
propName: {
type: String,
required: true,
},
}