Files
biblio/assets/js/book.js
2022-06-13 15:17:02 +02:00

11 lines
355 B
JavaScript

import Vue from 'vue';
import Book from './pages/book'
import BookListing from './pages/booklisting'
import BookListingHeader from './pages/booklistingheader'
import store from "./store/index";
Vue.component('Book', Book);
Vue.component('BookListing', BookListing);
Vue.component('BookListingHeader', BookListingHeader);
new Vue({store}).$mount('#app');