Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. /**
  2. * First we will load all of this project's JavaScript dependencies which
  3. * includes Vue and other libraries. It is a great starting point when
  4. * building robust, powerful web applications using Vue and Laravel.
  5. */
  6.  
  7. import './bootstrap';
  8. import Vue from 'vue';
  9. import NoteApp from './components/NoteApp.vue';
  10.  
  11. new Vue({
  12. el: '#app',
  13. components: {
  14. NoteApp
  15. }
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement