zova-ui-empty 5.0.240 → 5.0.243

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/env/.env CHANGED
@@ -30,7 +30,7 @@ PROXY_API_PREFIX = $API_PREFIX
30
30
  SSR_COOKIE_THEMENAME = false
31
31
  SSR_COOKIE_THEMEDARK = false
32
32
  SSR_COOKIE_THEMEDARK_DEFAULT = true
33
- SSR_BODYHIDDENBEFORELOAD = true
33
+ SSR_BODYREADYOBSERVER = false
34
34
  SSR_API_BASE_URL = http://localhost:$DEV_SERVER_PORT
35
35
  SSR_PROD_PORT = 3000
36
36
  SSR_VITE_NODE = false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-ui-empty",
3
- "version": "5.0.240",
3
+ "version": "5.0.243",
4
4
  "description": "A vue3 empty framework with ioc",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -39,7 +39,7 @@
39
39
  "vue": "^3.4.29",
40
40
  "vue-router": "^4.3.3",
41
41
  "zod": "^3.23.8",
42
- "zova": "^5.0.175",
42
+ "zova": "^5.0.176",
43
43
  "zova-module-a-model": "^5.0.23",
44
44
  "zova-module-a-pinia": "^5.0.24",
45
45
  "zova-module-a-router": "^5.0.58",
@@ -55,8 +55,8 @@
55
55
  "typescript": "^5.4.5",
56
56
  "vite": "^5.3.1",
57
57
  "vue-tsc": "^2.0.29",
58
- "zova-vite": "^1.0.150"
58
+ "zova-vite": "^1.0.151"
59
59
  },
60
60
  "license": "MIT",
61
- "gitHead": "522b5b05492949066c0df7df17bf27a7421478db"
61
+ "gitHead": "b04ec1e0aa2e95207fc35730bdf9193c7b26f92f"
62
62
  }
@@ -3,6 +3,7 @@ import type { ControllerLayoutDefault } from './controller.js';
3
3
  import { JSX } from 'vue/jsx-runtime';
4
4
  import EssentialLink from '../essentialLink/index.vue';
5
5
  import { ServiceMenuEntity } from '../../api/index.js';
6
+ import { RouterView } from 'vue-router';
6
7
 
7
8
  export interface RenderLayoutDefault extends ControllerLayoutDefault {}
8
9
 
@@ -41,7 +42,7 @@ export class RenderLayoutDefault extends BeanRenderBase {
41
42
  <div>
42
43
  <div>{this._renderMenu()}</div>
43
44
  <div>
44
- <router-view />
45
+ <RouterView />
45
46
  </div>
46
47
  </div>
47
48
  );
@@ -1,5 +1,6 @@
1
1
  import { BeanRenderBase, Local } from 'zova';
2
2
  import type { ControllerLayoutEmpty } from './controller.js';
3
+ import { RouterView } from 'vue-router';
3
4
 
4
5
  export interface RenderLayoutEmpty extends ControllerLayoutEmpty {}
5
6
 
@@ -8,7 +9,7 @@ export class RenderLayoutEmpty extends BeanRenderBase {
8
9
  render() {
9
10
  return (
10
11
  <div>
11
- <router-view />
12
+ <RouterView />
12
13
  </div>
13
14
  );
14
15
  }