Guest User

app.js

a guest
Jul 3rd, 2017
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. /**
  3.  * First we will load all of this project's JavaScript dependencies which
  4.  * includes Vue and other libraries. It is a great starting point when
  5.  * building robust, powerful web applications using Vue and Laravel.
  6.  */
  7. require('./bootstrap');
  8.  
  9.  
  10. //Vue.component('login', require('./pages/login.vue'));
  11. Vue.component('add-logbook', require('./pages/logbook/add-logbook.vue'));
  12. Vue.component('create-job', require('./pages/jobs/create-job.vue'));
  13. Vue.component('edit-job', require('./pages/jobs/edit-job.vue'));
  14. Vue.component('create-resume', require('./pages/resume/create-resume.vue'));
  15. Vue.component('create-course', require('./pages/courses/create-course.vue'));
  16.  
  17. /**
  18.  * Next, we will create a fresh Vue application instance and attach it to
  19.  * the page. Then, you may begin adding components to this application
  20.  * or customize the JavaScript scaffolding to fit your unique needs.
  21.  */
  22.  
  23. // Vue.component('example', require('./components/Example.vue'));
  24.  
  25. const app = new Vue({
  26.     el: '#app',
  27.     data:{
  28.         id: null
  29.     }
  30. });
Add Comment
Please, Sign In to add comment