I set a cookie with laravel
and now I want to get that in vue.js
?
and I don't want to use or install any dependency!
How to do that?
It would be highly appreciated if anyone can advise me!
I set a cookie with laravel
and now I want to get that in vue.js
?
and I don't want to use or install any dependency!
How to do that?
It would be highly appreciated if anyone can advise me!
document.cookie
will give you string of your cookies, then you can parse string and get necessary cookie https://developer.mozilla.org/en-US/docs/Web/API/Document/cookie.