Created
August 4, 2018 21:54
-
-
Save spemer/d46ea6c957bd3e21b6afb41efb8aea76 to your computer and use it in GitHub Desktop.
main.js - Axios
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
import Vue from 'vue' | |
import App from './App' | |
import axios from 'axios' | |
Vue.prototype.$http = axios | |
app = new Vue({ | |
el: '#app', | |
components: { App }, | |
template: '<App/>' | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment