ieeemysight4rehab/ieeemysight4rehab.github.io

View on GitHub
src/main.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import Vue from 'vue'
import './plugins/vuetify'
import App from './App.vue'
import router from './router'
import store from './store'
import axios from 'axios'
import VueAxios from 'vue-axios'
import Lingallery from 'lingallery';
import './registerServiceWorker'
import 'roboto-fontface/css/roboto/roboto-fontface.css'
import 'material-design-icons-iconfont/dist/material-design-icons.css'
import './style.css'
import './filters/truncate'

Vue.use(VueAxios, axios)
Vue.component('lingallery', Lingallery);
Vue.config.productionTip = false

new Vue({
  router,
  store,
  render: h => h(App)
}).$mount('#app')