This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
site-base/resources/assets/js/app.js

24 lines
723 B
JavaScript
Raw Normal View History

2017-11-03 05:26:07 +00:00
/*
|--------------------------------------------------------------------------
| 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');
2017-11-03 05:26:07 +00:00
window.Vue = require('vue');
2017-11-03 05:26:07 +00:00
const app = new Vue({
el: '#app'
2017-11-03 05:26:07 +00:00
});