vue2-client 1.2.114 → 1.2.115

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Change Log
2
2
  > 所有关于本项目的变化都在该文档里。
3
3
 
4
- **1.2.113 - 1.2.114 -2022-09-02 @江超**
4
+ **1.2.113 - 1.2.115 -2022-09-02 @江超**
5
5
  - 功能修改:
6
6
  - 修改请求后只有当返回的token有值时才设置store
7
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.2.114",
3
+ "version": "1.2.115",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -1,7 +1,7 @@
1
1
  import axios from 'axios'
2
2
  import Cookie from 'js-cookie'
3
3
  import Vue from 'vue'
4
- import {ACCESS_TOKEN, V4_ACCESS_TOKEN} from '@vue2-client/store/mutation-types'
4
+ import { ACCESS_TOKEN, V4_ACCESS_TOKEN } from '@vue2-client/store/mutation-types'
5
5
  import notification from 'ant-design-vue/es/notification'
6
6
 
7
7
  let compatible
@@ -221,7 +221,5 @@ export {
221
221
  removeAuthorization,
222
222
  checkAuthorization,
223
223
  loadInterceptors,
224
- parseUrlParams,
225
- setAuthorizationV4,
226
- removeAuthorizationV4
224
+ parseUrlParams
227
225
  }