Start your All-Access Pass to unlock this challenge
Which of these cases is NOT a valid reason to skip the use of props for passing down data that is reactive?
My application uses Vuex, so its data is available from every component and is reactive.
In Vue 3, I have reactive data as outside modules that I can import from anywhere.
The data I'm passing down in props is available as a service.
The data will never change, and it's globally available, so it doesn't have to be reactive.