- All state will live in the rockets component
- Data will be passed as props to child components
- Child components will call functions in parent components
- API: https://rockets.now.sh/
<app>
<rockets>
<new-rocket-form
:addRocket="addRocket">
</new-rocket-form>
<rocket-list
:rockets="rockets"
:removeRocket="removeRocket">
<rocket
:rocket="rocket"
:removeRocket="removeRocket">
</rocket>
</rocket-list>
</rockets>
</app>- Convert to vuex
- Refactor player score counter, todo app, reddit clone app to use more components
- Refactor player score counter, todo app, reddit clone app to use vuex