the word "framework" was missing. I also managed to make the docblock fit Laravel's style by changing around some of the wording while keeping the general message the same.
34 lines
1.0 KiB
JavaScript
34 lines
1.0 KiB
JavaScript
|
|
window._ = require('lodash');
|
|
window.Cookies = require('js-cookie');
|
|
|
|
/**
|
|
* We'll load jQuery and the Bootstrap jQuery plugin which provides support
|
|
* for JavaScript based Bootstrap features such as modals and tabs. This
|
|
* code may be modified to fit the specific needs of your application.
|
|
*/
|
|
|
|
window.$ = window.jQuery = require('jquery');
|
|
require('bootstrap-sass/assets/javascripts/bootstrap');
|
|
|
|
/**
|
|
* Vue is a modern JavaScript framework for building interactive web interfaces
|
|
* using reactive data binding and reusable components. Vue has a simple and
|
|
* clean API, leaving you to focus only on building your next great idea.
|
|
*/
|
|
|
|
window.Vue = require('vue');
|
|
require('vue-resource');
|
|
|
|
/**
|
|
* We'll register a HTTP interceptor to attach the "XSRF" header to each of
|
|
* the outgoing requests issued by this application. The CSRF middleware
|
|
* included with Laravel will automatically verify the header's value.
|
|
*/
|
|
|
|
Vue.http.interceptors.push(function (request, next) {
|
|
request.headers['X-XSRF-TOKEN'] = Cookies.get('XSRF-TOKEN');
|
|
|
|
next();
|
|
});
|