[Vuejs]-Vuejs Global User Object from Laravel API

0👍

If you need your user on every page, what about something like this?

new Vue({
   el: "#app",
   mounted: function() {
     // make a request to the api here
   },
});

Leave a comment