[Vuejs]-How can I get the data in Vue from Node.js

0👍

You have to do request from vue to your server to fetch the data. You can use axios for that.

BUT in this case you are sending cookies to server and trying to return cookies from request, why? You can take your cookies on front-end without any request, use js-cookie.

Cookie.get('cart')

Leave a comment