10 lines
313 B
JavaScript
10 lines
313 B
JavaScript
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'); |