0👍
In Postman, you are putting the email
field as a param, not as serialized data in the body. The vue-resource package’s post
method sets the data passed to it as the body, not as URL parameters. Either add the email to the request parameters, or in your API, make sure you grabbing data from the request body and not URL parameters.
- [Vuejs]-Can overly strict ES6 linting settings cause VueJS server to crash?
- [Vuejs]-4 deep level folder not working "../../../../config.js" in vue component
Source:stackexchange.com