Skip to content

Commit

Permalink
Remove Vue
Browse files Browse the repository at this point in the history
  • Loading branch information
momijizukamori committed Aug 3, 2023
1 parent b7824ca commit e265fb7
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions resources/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@

require('./bootstrap');

window.Vue = require('vue');
// window.Vue = require('vue');

/**
* Next, we will create a fresh Vue application instance and attach it to
* the page. Then, you may begin adding components to this application
* or customize the JavaScript scaffolding to fit your unique needs.
*/
// /**
// * Next, we will create a fresh Vue application instance and attach it to
// * the page. Then, you may begin adding components to this application
// * or customize the JavaScript scaffolding to fit your unique needs.
// */

Vue.component('v-pagination', require('./components/Pagination.vue').default);
Vue.component('search-page', require('./components/Search.vue').default);
Vue.component('v-select', require('vue-select').VueSelect);
Vue.component('b-form-radio-group', require('bootstrap-vue').BFormRadioGroup);
Vue.component('search-result', require('./components/Result.vue').default);
// Vue.component('v-pagination', require('./components/Pagination.vue').default);
// Vue.component('search-page', require('./components/Search.vue').default);
// Vue.component('v-select', require('vue-select').VueSelect);
// Vue.component('b-form-radio-group', require('bootstrap-vue').BFormRadioGroup);
// Vue.component('search-result', require('./components/Result.vue').default);

const app = new Vue({
el: '#app'
});
// const app = new Vue({
// el: '#app'
// });

0 comments on commit e265fb7

Please sign in to comment.