24 lines
723 B
JavaScript
Vendored
24 lines
723 B
JavaScript
Vendored
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Laravel Spark Bootstrap
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| First, we will load all of the "core" dependencies for Spark which are
|
|
| libraries such as Vue and jQuery. This also loads the Spark helpers
|
|
| for things such as HTTP calls, forms, and form validation errors.
|
|
|
|
|
| Next, we'll create the root Vue application for Spark. This will start
|
|
| the entire application and attach it to the DOM. Of course, you may
|
|
| customize this script as you desire and load your own components.
|
|
|
|
|
*/
|
|
|
|
require('./bootstrap');
|
|
|
|
window.Vue = require('vue');
|
|
|
|
const app = new Vue({
|
|
el: '#app'
|
|
});
|