In this lesson, we will add an edit form to vehicles CRUD which is almost identical to create, except we are going to have a different URL /vehicles/:id/edit. By URL parameter :id data of specific vehicles will be fetched from API.

1. Extend Store
Extend vehicle store src/stores/vehicle.js...
It looks like you may have forgotten to mention that
updateVehicleandgetVehicleshould be added to thereturnstatement at the end of the vehicle store. However, anyone getting this far in the course should probably be able to figure that out by now. 😉