Skip to content

Instantly share code, notes, and snippets.

@daanfl

daanfl/main.js Secret

Created May 27, 2019 07:53
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 daanfl/6e1ce9c5b7ff3c28cb010616b2578c24 to your computer and use it in GitHub Desktop.
Save daanfl/6e1ce9c5b7ff3c28cb010616b2578c24 to your computer and use it in GitHub Desktop.
import Vue from 'vue'
import App from './App.vue'
import {store} from './store'
import axios from 'axios'
import VueAxios from 'vue-axios'
Vue.use(VueAxios, axios)
new Vue({
render: h => h(App),
store,
}).$mount('#app')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment