From 77f1076c15fbb8bf826a58cb2d556801a82a81ee Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Wed, 26 Dec 2018 09:52:37 -0500 Subject: - Add laravel site directories --- laravel/resources/js/app.js | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 laravel/resources/js/app.js (limited to 'laravel/resources/js/app.js') diff --git a/laravel/resources/js/app.js b/laravel/resources/js/app.js new file mode 100644 index 0000000..32d79b4 --- /dev/null +++ b/laravel/resources/js/app.js @@ -0,0 +1,33 @@ + +/** + * First we will load all of this project's JavaScript dependencies which + * includes Vue and other libraries. It is a great starting point when + * building robust, powerful web applications using Vue and Laravel. + */ + +require('./bootstrap'); + +window.Vue = require('vue'); + +/** + * The following block of code may be used to automatically register your + * Vue components. It will recursively scan this directory for the Vue + * components and automatically register them with their "basename". + * + * Eg. ./components/ExampleComponent.vue -> + */ + +// const files = require.context('./', true, /\.vue$/i) +// files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key).default)) + +Vue.component('example-component', require('./components/ExampleComponent.vue').default); + +/** + * Next, we will create a fresh Vue application instance and attach it to + * the page. Then, you may begin adding components to this application + * or customize the JavaScript scaffolding to fit your unique needs. + */ + +const app = new Vue({ + el: '#app' +}); -- cgit 1.4.1