A common error that happens is trying to mutate state using v-model=”$state.cars.car.color” which won’t work because this is effectively the read-only version of the value. Instead it should use either a computed property, or a combination of the mapState/mapMutations he…