在项目中
文章转载自博客园
axios 模拟本地请求
这里wallet.json 文件放到static 目录下面
1
2
3
4
5
6
7
8
this.axios.get('../../static/wallet.json')
.then(data => {
console.log(data)
this.list=data.data
})
.catch(error => {
console.log(error);
});