import Vue from 'vue'; import UiNavbar from './Navbar.vue'; const appFactory = (el, attrs) => { // Bootstrap Vue.js. new Vue({el, components: { UiNavbar }}); }; export default appFactory;