Last active
September 23, 2018 22:27
-
-
Save kmaher9/64e7e21e2213e5cd436c71308a389eca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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