zova-ui-empty 5.0.207 → 5.0.209

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,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-ui-empty",
3
- "version": "5.0.207",
3
+ "version": "5.0.209",
4
4
  "description": "A vue3 empty framework with ioc",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -35,12 +35,12 @@
35
35
  "vue": "^3.4.29",
36
36
  "vue-router": "^4.3.3",
37
37
  "zod": "^3.23.8",
38
- "zova": "^5.0.151",
38
+ "zova": "^5.0.153",
39
39
  "zova-module-a-model": "^5.0.16",
40
40
  "zova-module-a-pinia": "^5.0.20",
41
- "zova-module-a-router": "^5.0.50",
41
+ "zova-module-a-router": "^5.0.52",
42
42
  "zova-module-a-style": "^5.0.22",
43
- "zova-module-a-tabs": "^5.0.17"
43
+ "zova-module-a-tabs": "^5.0.18"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@cabloy/lint": "^4.0.10",
@@ -50,8 +50,8 @@
50
50
  "typescript": "^5.4.5",
51
51
  "vite": "^5.3.1",
52
52
  "vue-tsc": "^2.0.29",
53
- "zova-vite": "^1.0.136"
53
+ "zova-vite": "^1.0.137"
54
54
  },
55
55
  "license": "MIT",
56
- "gitHead": "f9f5b102187886f89ec48a892ae9c322eb59116b"
56
+ "gitHead": "20d5666c9835e208eb0ab4c4f09f658d314795f4"
57
57
  }
@@ -10,6 +10,14 @@ export default function (_meta: ZovaConfigMeta) {
10
10
  layout: {},
11
11
  };
12
12
 
13
+ // routes
14
+ config.routes = {
15
+ path: {
16
+ '/a/home/home': { alias: '/' },
17
+ },
18
+ name: {},
19
+ };
20
+
13
21
  // module config
14
22
  config.modules = {};
15
23
 
@@ -5,7 +5,8 @@ const __MenuData = [
5
5
  title: 'Home',
6
6
  caption: '',
7
7
  icon: '::home',
8
- to: '/a/home/home',
8
+ to: '/',
9
+ //to: '/a/home/home',
9
10
  },
10
11
  {
11
12
  title: 'State',
@@ -2,14 +2,7 @@ import ErrorNotFound from './page/errorNotFound/index.vue';
2
2
  import { IModuleRoute } from 'zova-module-a-router';
3
3
 
4
4
  export const routes: IModuleRoute[] = [
5
- {
6
- path: '/',
7
- redirect: '/a/home/home',
8
- meta: {
9
- absolute: true,
10
- requiresAuth: false,
11
- },
12
- },
5
+ // { path: '/', redirect: '/a/home/home', meta: { absolute: true } },
13
6
  {
14
7
  path: '/:catchAll(.*)*',
15
8
  component: ErrorNotFound,