I have some projects built with Laravel (laravel/framework
v5.3.24) and Vue ^2.0.1. I ran composer update
which updated laravel/framework
to v5.3.26. Strangely after this update, my Vue components, using vue-resource
(^1.0.3) started to have problems- the get request's Response body property was null (valid data was being output from the url in question). I cannot work out why this is the case. The success callback was being executed.
Yes, other dependencies were updated, including spatie/laravel-fractal
and the usual dev-dependencies. The spatie/laravel-fractal
package seemed to be working as usual and no errors in it's data output.
Is there anything that would cause these kinds of problems with vue-resource?
Luckily, I had recently pushed my work to the GitHub repo and restored the files to their previous state, and it was working fine. IMO, this hiccup was a direct result of running composer update
.
Project URL: https://github.com/AshMenhennett/Salon-Pricing
I don't have any other data to post, as the only error in the console, was a result of the null body property on the Response and its data that I was trying to access.