Skip to content

Instantly share code, notes, and snippets.

@kmaher9
Last active September 23, 2018 22:27
Show Gist options
  • Save kmaher9/64e7e21e2213e5cd436c71308a389eca to your computer and use it in GitHub Desktop.
Save kmaher9/64e7e21e2213e5cd436c71308a389eca to your computer and use it in GitHub Desktop.
// TO INSTALL: npm init bootstrap-vue --save
import Vue from 'vue'
import App from './App'
import router from './router'
import BootstrapVue from 'bootstrap-vue'
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap-vue/dist/bootstrap-vue.css'
Vue.use(BootstrapVue)
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
components: {
App
},
template: '<App/>'
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment