diff --git a/resources/assets/js/app.js b/resources/assets/js/app.js index ad0c293af..2f5022e35 100644 --- a/resources/assets/js/app.js +++ b/resources/assets/js/app.js @@ -11,5 +11,11 @@ let token = document.head.querySelector('meta[name="csrf-token"]'); if (token) { window.axios.defaults.headers.common['X-CSRF-TOKEN'] = token.content; } else { - console.error('CSRF token not found: https://laravel.com/docs/csrf#csrf-x-csrf-token'); + console.error('CSRF token not found.'); } + +window.App = {}; + +window.App.boot = function() { + new Vue({ el: '#content'}); +} \ No newline at end of file