Skip to content

Instantly share code, notes, and snippets.

@laalaguer
Created March 5, 2019 08:54
Show Gist options
  • Save laalaguer/4c6a6ac4c4b42b9839a3cf58065eacde to your computer and use it in GitHub Desktop.
Save laalaguer/4c6a6ac4c4b42b9839a3cf58065eacde to your computer and use it in GitHub Desktop.
Clean up main.js, add some Bootstrap styling
import Vue from 'vue'
import BootstrapVue from 'bootstrap-vue' // Here
import 'bootstrap/dist/css/bootstrap.css' // Here
import 'bootstrap-vue/dist/bootstrap-vue.css' // Here
import App from './App.vue'
Vue.use(BootstrapVue) // Here
Vue.config.productionTip = false
new Vue({
render: h => h(App),
}).$mount('#app')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment