Skip to content

Instantly share code, notes, and snippets.

@LazyFatArrow
Created May 26, 2019 14:30
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 LazyFatArrow/2c2879c98f297805dde68271a6bd9d46 to your computer and use it in GitHub Desktop.
Save LazyFatArrow/2c2879c98f297805dde68271a6bd9d46 to your computer and use it in GitHub Desktop.
import Vue from 'vue'
import BootstrapVue from 'bootstrap-vue'
import App from './App.vue'
import router from './router'
import { createProvider } from './vue-apollo'
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap-vue/dist/bootstrap-vue.css'
Vue.use(BootstrapVue)
new Vue({
router,
apolloProvider: createProvider(),
render: h => h(App)
}).$mount('#app')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment