Full-Stack Web Development with Vue.js and Node

(singke) #1
Building the Real Application Chapter 5

Vue.use(BootstrapVue);
Vue.use(Vuetify);

Vue.config.productionTip = false;

/* eslint-disable no-new */
new Vue({
el: '#app',
router,
components: { App },
template: '<App/>',
});

With this, we should have a page like this on the home page:


We will be making these pages dynamic as we go.

Free download pdf