配置axios请求根路径
1.main.js
全局配置baseURl请求根路径
将axios挂载在Vue.prototype供每个.vue组件实例直接调用
import axios from 'axios'
axios.defaults.baseURL = 'http://www.liulongbin.top:3006'
Vue.prototype.$http = axios;
2.Left.vue
在组件中直接调用,此时就不需要写全请求路径了
async postInfo() {
const { data: res } = this.$http.post("/api/post", { name: zs, age: 20 });
console.log(res);
},