Advertisement
Guest User

Untitled

a guest
Sep 1st, 2016
347
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1.  
  2. /**
  3. * First we will load all of this project's JavaScript dependencies which
  4. * include Vue and Vue Resource. This gives a great starting point for
  5. * building robust, powerful web applications using Vue and Laravel.
  6. */
  7.  
  8. require('./bootstrap');
  9.  
  10. /**
  11. * Next, we will create a fresh Vue application instance and attach it to
  12. * the body of the page. From here, you may begin adding components to
  13. * the application, or feel free to tweak this setup for your needs.
  14. */
  15.  
  16. Vue.component('example', require('./components/Example.vue'));
  17.  
  18. const app = new Vue({
  19. el: 'body'
  20. });
  21.  
  22. Vue.component(
  23. 'passport-clients',
  24. require('./components/passport/Clients.vue')
  25. );
  26.  
  27. Vue.component(
  28. 'passport-authorized-clients',
  29. require('./components/passport/AuthorizedClients.vue')
  30. );
  31.  
  32. Vue.component(
  33. 'passport-personal-access-tokens',
  34. require('./components/passport/PersonalAccessTokens.vue')
  35. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement