zova-ui-empty 5.0.239 → 5.0.242
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.
|
|
3
|
+
"version": "5.0.242",
|
|
4
4
|
"description": "A vue3 empty framework with ioc",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -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.
|
|
58
|
+
"zova-vite": "^1.0.151"
|
|
59
59
|
},
|
|
60
60
|
"license": "MIT",
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "af09d8496cad33785f0186ad158cddb48fd92a48"
|
|
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
|
-
<
|
|
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
|
-
<
|
|
12
|
+
<RouterView />
|
|
12
13
|
</div>
|
|
13
14
|
);
|
|
14
15
|
}
|