We badly started implementing some props mutation.
There are usually two cases:
The props are injected via root component propsData
The props are used inside a vue app
Solution 1
Migrate the propsData (usually initial-states) to the root .vue file away from the .js entry point
Solution 2
Use a sync modifier and change the data flow according to vue documentations. Or rethink the way you're using the data and consider switching to events and move the handling methods one component up.
The text was updated successfully, but these errors were encountered:
We badly started implementing some props mutation.
There are usually two cases:
propsDataSolution 1
Migrate the propsData (usually initial-states) to the root
.vuefile away from the.jsentry pointSolution 2
Use a sync modifier and change the data flow according to vue documentations. Or rethink the way you're using the data and consider switching to events and move the handling methods one component up.
The text was updated successfully, but these errors were encountered: