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');