Vue JS Practice Test
Vue JS Components and Props
How do you define a prop with a type validation in Vue 3 using the Options API?
Select your answer
A
props: { title: String }
B
props: [title: String]
C
data() { return { title: String } }
D
computed: { title: String }
Hint