cloud-web-corejs 1.0.8 → 1.0.9

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cloud-web-corejs",
3
3
  "private": false,
4
- "version": "1.0.8",
4
+ "version": "1.0.9",
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
7
7
  "lint": "eslint --ext .js,.vue src",
package/src/index.js CHANGED
@@ -8,7 +8,7 @@ import '@/styles/index.scss'; // global css
8
8
 
9
9
  import App from '@base/App';
10
10
  import store from '@base/store';
11
- import router from '@/router';
11
+ import router from '@base/router';
12
12
 
13
13
  import '@/icons'; // icon
14
14
  import '@base/permission'; // permission control
package/src/permission.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**version-1.0*/
2
- import router from "@/router";
2
+ import router from "@base/router";
3
3
  import store from "./store";
4
4
  import {
5
5
  Message
@@ -12,7 +12,7 @@ import {
12
12
  } from '../../utils/auth'
13
13
  import router, {
14
14
  resetRouter
15
- } from '@/router'
15
+ } from '@base/router'
16
16
  import {
17
17
  getDispermissions
18
18
  } from '../../api/menu'