vuex中怎样使用axios?

index.js

import { post, get } from './axios.js'let getList = function index (params) {  return get('http://localhost/blog/public/index.php/api/home', params)
}export default {getList}

actions.js

import { getList } from '../api/index.js'getLists (val) {
    getList.then(res => {      console.log(res)
    })
}

api文件里面有一个getList方法 现在我想在vuex的action.js中使用这个getList方法应该怎么办呢?现在这样提示 "export 'getList' was not found in '../api/index.js'

https://img1.mukewang.com/5c59721c00019a4704870068.jpg

https://img4.mukewang.com/5c59721c0001c04102550299.jpg


PIPIONE
浏览 980回答 1
1回答

翻过高山走不出你

把default去了。。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Vue.js