Skip to content

Instantly share code, notes, and snippets.

@dvallin
Created November 29, 2017 16:46
Show Gist options
  • Save dvallin/5f2f42882f5dc335566f50bb7d81de5e to your computer and use it in GitHub Desktop.
Save dvallin/5f2f42882f5dc335566f50bb7d81de5e to your computer and use it in GitHub Desktop.
import Vue from 'vue'
import App from './App'
import BootstrapVue from 'bootstrap-vue'
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap-vue/dist/bootstrap-vue.css'
Vue.config.productionTip = false;
Vue.use(BootstrapVue);
new Vue({
el: '#app',
render: h => h(App)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment