cloud-web-corejs 1.0.228 → 1.0.229
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 +1 -1
- package/src/router/index.js +1 -4
package/package.json
CHANGED
package/src/router/index.js
CHANGED
|
@@ -6,10 +6,7 @@ Vue.use(Router);
|
|
|
6
6
|
import {constantRoutes as route1s} from "@base/router/modules/system";
|
|
7
7
|
import {constantRoutes as route2s} from "@/router/modules/customer";
|
|
8
8
|
|
|
9
|
-
export const constantRoutes = [
|
|
10
|
-
...route2s,
|
|
11
|
-
...route1s
|
|
12
|
-
];
|
|
9
|
+
export const constantRoutes = [...route1s, ...route2s];
|
|
13
10
|
|
|
14
11
|
const createRouter = () =>
|
|
15
12
|
new Router({
|