1. vue-kst-auth
``` yarn add vue-kst-auth ```
vue-kst-auth
Package: vue-kst-auth
Last modified: Thu, 17 Aug 2023 08:52:37 GMT
Version: 3.1.2
Downloads: 27

Install

npm install vue-kst-auth
yarn add vue-kst-auth

kst-auth

安装

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 => {})

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin