Added vue book search.

This commit is contained in:
krzysiej
2022-06-13 11:44:50 +02:00
parent 040ca01158
commit 5c154b740c
4 changed files with 48 additions and 16 deletions

View File

@@ -1,8 +1,10 @@
import Vue from 'vue';
import Book from './pages/book'
import BookListing from './pages/booklisting'
import BookListingHeader from './pages/booklistingheader'
Vue.component('Book', Book);
Vue.component('BookListing', BookListing);
Vue.component('BookListingHeader', BookListingHeader);
new Vue().$mount('#app');