Skip to content

Instantly share code, notes, and snippets.

@kenny-io
Created April 23, 2019 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kenny-io/3ba74954a9446ceca0a1e3d4b4652057 to your computer and use it in GitHub Desktop.
Save kenny-io/3ba74954a9446ceca0a1e3d4b4652057 to your computer and use it in GitHub Desktop.
//src/main.js
import Vue from 'vue'
import App from './App.vue'
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
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