[Vuejs]-How to solve error "Uncaught (in promise) TypeError: Cannot create property" ? (vue.js 2)

0👍

Try

response = JSON.parse(response);

Because according to error response is string not JSON.

Leave a comment