yarn add vue-kst-auth
export { _axios, baseConfig };
_axios // 封装后的axios 自定义headers,返回数据的过滤
baseConfig // 基础数据(登录状态等)
在main.ts中
import { _axios, baseConfig } from "vue-kst-auth"
// 可以将_axios作为vue全局属性来使用
Vue.prototype.$axios = _axios;
在组建中能够直接使用,请求会添加headers信息
this.$axios.get("").then(res => {})
this.$axios.post("").then(res => {})