Moved book listing to the vue component.

This commit is contained in:
krzysiej
2022-06-10 15:26:23 +02:00
parent a0f06d3bbe
commit 140d68c3a9
5 changed files with 101 additions and 44 deletions

View File

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