app.js 724 B

1234567891011121314151617181920212223242526
  1. window.Cookies = require('js-cookie');
  2. /**
  3. * Vue.js
  4. *
  5. * Vue is a modern JavaScript for building interactive web interfaces using
  6. * reacting data binding and reusable components. Vue's API is clean and
  7. * simple, leaving you to focus only on building your next great idea.
  8. */
  9. window.Vue = require('vue');
  10. require('vue-resource');
  11. /**
  12. * The XSRF Header
  13. *
  14. * We'll register a HTTP interceptor to attach the "XSRF" header to each of
  15. * the outgoing requests issued by this application. The CSRF middleware
  16. * included with Laravel will automatically verify the header's value.
  17. */
  18. Vue.http.interceptors.push(function (request, next) {
  19. request.headers['X-XSRF-TOKEN'] = Cookies.get('XSRF-TOKEN');
  20. next();
  21. });