zova-ui-empty 5.0.180 → 5.0.183

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.180",
3
+ "version": "5.0.183",
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.135",
38
+ "zova": "^5.0.138",
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.49",
41
+ "zova-module-a-router": "^5.0.50",
42
42
  "zova-module-a-style": "^5.0.22",
43
- "zova-module-a-tabs": "^5.0.7"
43
+ "zova-module-a-tabs": "^5.0.10"
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.21",
53
- "zova-vite": "^1.0.124"
53
+ "zova-vite": "^1.0.125"
54
54
  },
55
55
  "license": "MIT",
56
- "gitHead": "c7f448388e69729b0576bfb8a4dc3aef81c05cc5"
56
+ "gitHead": "1b6dab9e925eab82e802802c7c5e14ccf82ebccc"
57
57
  }
@@ -10,7 +10,6 @@ export class ModelMenu extends BeanModelBase<ScopeModule> {
10
10
  queryFn: async () => {
11
11
  const data = await this.scope.service.menu.select();
12
12
  return data.filter(item => {
13
- if (!item.to) return true;
14
13
  return this.$router.checkPathValid(item.to);
15
14
  });
16
15
  },