An app to bring gravity sports athletes closer to realizing their potential.

main.js 717B

1234567891011121314151617181920212223242526272829
  1. // The Vue build version to load with the `import` command
  2. // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
  3. import Vue from 'vue'
  4. import * as VueGoogleMaps from 'vue2-google-maps'
  5. import VueGoogleCharts from 'vue-google-charts'
  6. import BootstrapVue from 'bootstrap-vue'
  7. import 'bootstrap/dist/css/bootstrap.css'
  8. import 'bootstrap-vue/dist/bootstrap-vue.css'
  9. import App from './App'
  10. Vue.config.productionTip = false
  11. const apiKey = 'AIzaSyDq8NHbKHAd2HE3SCtIpxq8yYVD16PzUlY'
  12. Vue.use(VueGoogleMaps, {
  13. load: {
  14. key: apiKey,
  15. libraries: 'places'
  16. }
  17. })
  18. Vue.use(VueGoogleCharts)
  19. Vue.use(BootstrapVue)
  20. new Vue({ // eslint-disable-line no-new
  21. el: '#app',
  22. render: h => h(App)
  23. })