Removed Vue

This commit is contained in:
2020-06-09 08:38:05 +02:00
parent 43fc299642
commit bab4c6d72e
7 changed files with 17 additions and 58 deletions
+5 -5
View File
@@ -6,7 +6,7 @@
require('./bootstrap');
window.Vue = require('vue');
// window.Vue = require('vue');
/**
* The following block of code may be used to automatically register your
@@ -19,7 +19,7 @@ window.Vue = require('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);
// Vue.component('example-component', require('./components/ExampleComponent.vue').default);
/**
* Next, we will create a fresh Vue application instance and attach it to
@@ -27,6 +27,6 @@ Vue.component('example-component', require('./components/ExampleComponent.vue').
* or customize the JavaScript scaffolding to fit your unique needs.
*/
const app = new Vue({
el: '#app',
});
// const app = new Vue({
// el: '#app',
// });
+6 -6
View File
@@ -6,12 +6,12 @@ window._ = require('lodash');
* code may be modified to fit the specific needs of your application.
*/
try {
window.Popper = require('popper.js').default;
window.$ = window.jQuery = require('jquery');
require('bootstrap');
} catch (e) {}
// try {
// window.Popper = require('popper.js').default;
// window.$ = window.jQuery = require('jquery');
//
// require('bootstrap');
// } catch (e) {}
/**
* We'll load the axios HTTP library which allows us to easily issue requests