How to Add Multiple Data Types for Vue js Props
In this lesson, we will see how to add multiple data types for vue js props, sometimes when working with vue js props we want to get multiple data types so how can we do that?
Use an array of data types
To do that we can use an array of data types as follows:
props: {
price: {
type: [ String, Number ]
}
}