安装
npm i axios -S
在main.js入口文件下进行配置
import Vue from 'vue' import axios from 'axios' Vue.prototype.$http = axios
在组件当中使用
methods: { click(){ this.$http.get('http://127.0.0.1:3000/a').then(response=>{ console.log(response.data) }) } },
安装
npm i axios -S
在main.js入口文件下进行配置
import Vue from 'vue' import axios from 'axios' Vue.prototype.$http = axios
在组件当中使用
methods: { click(){ this.$http.get('http://127.0.0.1:3000/a').then(response=>{ console.log(response.data) }) } },