Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

Gray-Ice

个人博客兼个人网站

详情请看axios中文网
首先安装这俩模块:

1
2
npm install axios --save
npm install vue-axios --save

然后在main里加入如下代码:

1
2
3
4
5
import Vue from 'vue'
import axios from 'axios'
import VueAxios from 'vue-axios'

Vue.use(VueAxios, axios)

注意import的顺序。
之后就可以在.vue文件中引用axios了:

1
2
3
4
this.axios({
url: '127.0.0.1:8000',
method: 'get'
})

本篇完。

评论



愿火焰指引你