renusify 2.2.5 → 2.3.0
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/components/app/style.scss +6 -4
- package/components/app/toast/style.scss +4 -3
- package/components/avatar/style.scss +2 -2
- package/components/bar/bottomNavigationCircle.vue +7 -5
- package/components/bar/scss/bottomNav.scss +15 -12
- package/components/bar/scss/toolbar.scss +32 -30
- package/components/bar/toolbar/index.vue +2 -2
- package/components/bar/toolbar/laptop.vue +1 -1
- package/components/bar/toolbar/mobile.vue +1 -1
- package/components/breadcrumb/bredcrumbItem.vue +1 -1
- package/components/breadcrumb/style.scss +6 -6
- package/components/button/index.vue +1 -1
- package/components/button/style.scss +41 -36
- package/components/calendar/index.vue +4 -3
- package/components/card/index.vue +1 -1
- package/components/card/style.scss +14 -11
- package/components/chart/chart.vue +3 -4
- package/components/chart/worldMap.vue +2 -2
- package/components/chat/MessageList.vue +122 -119
- package/components/chat/chatInput.vue +3 -3
- package/components/chat/chatMsg.vue +23 -21
- package/components/chat/index.vue +2 -2
- package/components/chip/style.scss +21 -16
- package/components/codeEditor/highlightCss.vue +1 -1
- package/components/codeEditor/highlightHtml.vue +1 -1
- package/components/codeEditor/highlightJs.vue +1 -1
- package/components/codeEditor/index.vue +6 -6
- package/components/container/style.scss +12 -10
- package/components/content/index.vue +17 -14
- package/components/cropper/index.vue +2 -2
- package/components/float/index.vue +456 -454
- package/components/form/camInput/index.vue +2 -2
- package/components/form/checkInput/index.vue +2 -2
- package/components/form/checkboxInput/index.vue +5 -4
- package/components/form/colorInput/Alpha.vue +1 -1
- package/components/form/colorInput/Preview.vue +1 -1
- package/components/form/colorInput/Saturation.vue +1 -1
- package/components/form/colorInput/index.vue +2 -2
- package/components/form/colorInput/picker.vue +10 -8
- package/components/form/dateInput/index.vue +2 -2
- package/components/form/fileInput/index.vue +0 -3
- package/components/form/fileInput/single.vue +3 -3
- package/components/form/groupInput/index.vue +5 -4
- package/components/form/input/index.vue +31 -29
- package/components/form/jsonInput/JsonView.vue +5 -4
- package/components/form/jsonInput/index.vue +35 -33
- package/components/form/numberInput/index.vue +11 -8
- package/components/form/radioInput/index.vue +6 -4
- package/components/form/rangeInput/index.vue +11 -10
- package/components/form/ratingInput/index.vue +5 -5
- package/components/form/selectInput/index.vue +8 -6
- package/components/form/switchInput/index.vue +9 -7
- package/components/form/telInput/index.vue +2 -2
- package/components/form/text-editor/style.scss +10 -7
- package/components/form/textArea/index.vue +2 -2
- package/components/form/timeInput/timepicker.vue +4 -3
- package/components/form/unitInput/index.vue +8 -6
- package/components/icon/style.scss +5 -4
- package/components/img/index.vue +2 -2
- package/components/index.js +0 -2
- package/components/list/index.vue +1 -1
- package/components/list/style.scss +6 -5
- package/components/map/index.vue +3 -3
- package/components/map/route.vue +2 -2
- package/components/menu/index.vue +4 -3
- package/components/modal/style.scss +19 -15
- package/components/nestable/index.vue +4 -4
- package/components/notify/index.vue +55 -53
- package/components/notify/notification.vue +5 -3
- package/components/progress/style.scss +8 -5
- package/components/searchBox/index.vue +15 -12
- package/components/skeleton/index.vue +5 -3
- package/components/slider/index.vue +18 -15
- package/components/swiper/index.vue +2 -2
- package/components/table/crud/index.vue +2 -2
- package/components/table/style.scss +87 -82
- package/components/tabs/index.vue +2 -2
- package/components/timeline/index.vue +64 -61
- package/components/tree/index.vue +4 -4
- package/components/tree/tree-element.vue +2 -2
- package/directive/animate/style.scss +72 -41
- package/directive/drag/index.js +1 -1
- package/directive/ripple/style.scss +6 -4
- package/directive/skeleton/style.scss +0 -2
- package/directive/sortable/index.js +1 -1
- package/directive/sortable/style.scss +7 -3
- package/directive/title/style.scss +4 -2
- package/index.js +10 -10
- package/package.json +1 -1
- package/style/app.scss +64 -56
- package/style/colors.scss +26 -22
- package/style/functions/index.scss +8 -8
- package/style/mixins/container.scss +24 -19
- package/style/mixins/index.scss +19 -15
- package/style/mixins/utilities.scss +26 -21
- package/style/style.scss +5 -6
- package/style/transitions.scss +14 -13
- package/style/variables/base.scss +26 -24
- package/style/variables/utilities.scss +35 -34
- package/components/html2pdf/index.js +0 -4
- package/components/html2pdf/index.vue +0 -280
- package/components/html2pdf/pageBreak.js +0 -1
- package/components/html2pdf/pageBreak.vue +0 -12
- package/style/_include.scss +0 -3
- package/style/variables/index.scss +0 -3
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
|
|
2
|
+
<div :class="{
|
|
3
3
|
[$r.prefix+'notify']:true,
|
|
4
4
|
'top-pos':top,
|
|
5
5
|
'bottom-pos':!top,
|
|
@@ -8,33 +8,33 @@
|
|
|
8
8
|
'flex-column-reverse':!top,
|
|
9
9
|
'flex-column':top,
|
|
10
10
|
}" :style="{ 'min-width': width }">
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
11
|
+
<r-btn v-if="list.length>0" class="color-error" rounded
|
|
12
|
+
@click.prevent="handleClose(list[list.length-1].on_close_all)">
|
|
13
|
+
{{ $t('clear', 'renusify') }}
|
|
14
|
+
</r-btn>
|
|
15
|
+
<notification v-for="item in list" :key="item.id"
|
|
16
|
+
:pos="left?'left':'right'"
|
|
17
|
+
:permanent="item.permanent"
|
|
18
|
+
:status="`color-${item.status}`"
|
|
19
|
+
:width="item.width"
|
|
20
|
+
:timeout="item.timeout"
|
|
21
|
+
:content="item.content"
|
|
22
|
+
@click.prevent="handle(item.on_click)"
|
|
23
|
+
@hide="hideChild(item.id,item.on_close)">
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
<slot :data="item">
|
|
26
|
+
{{ item }}
|
|
27
|
+
</slot>
|
|
28
28
|
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
</notification>
|
|
30
|
+
</div>
|
|
31
31
|
</template>
|
|
32
32
|
<script>
|
|
33
33
|
import {defineAsyncComponent} from 'vue'
|
|
34
34
|
|
|
35
35
|
export default {
|
|
36
36
|
components: {
|
|
37
|
-
notification: defineAsyncComponent(()=>import('./notification.vue'))
|
|
37
|
+
notification: defineAsyncComponent(() => import('./notification.vue'))
|
|
38
38
|
},
|
|
39
39
|
props: {
|
|
40
40
|
permanent: {
|
|
@@ -61,24 +61,24 @@ export default {
|
|
|
61
61
|
default: 4000
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
|
-
data
|
|
64
|
+
data() {
|
|
65
65
|
return {
|
|
66
66
|
list: []
|
|
67
67
|
}
|
|
68
68
|
},
|
|
69
69
|
methods: {
|
|
70
|
-
handleClose
|
|
70
|
+
handleClose(close) {
|
|
71
71
|
if (close !== null) {
|
|
72
72
|
close()
|
|
73
73
|
}
|
|
74
74
|
this.$notify()
|
|
75
75
|
},
|
|
76
|
-
handle
|
|
76
|
+
handle(click) {
|
|
77
77
|
if (click !== null) {
|
|
78
78
|
click()
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
|
-
showMe
|
|
81
|
+
showMe(obj) {
|
|
82
82
|
const item = {
|
|
83
83
|
id: this.$helper.uniqueId(),
|
|
84
84
|
permanent: obj.permanent || this.permanent,
|
|
@@ -93,10 +93,10 @@ export default {
|
|
|
93
93
|
}
|
|
94
94
|
this.list.push(item)
|
|
95
95
|
},
|
|
96
|
-
hideMe
|
|
96
|
+
hideMe() {
|
|
97
97
|
this.list = []
|
|
98
98
|
},
|
|
99
|
-
hideChild
|
|
99
|
+
hideChild(id, close) {
|
|
100
100
|
if (close !== null) {
|
|
101
101
|
close()
|
|
102
102
|
}
|
|
@@ -108,46 +108,48 @@ export default {
|
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
110
|
},
|
|
111
|
-
registerBusMethods
|
|
111
|
+
registerBusMethods() {
|
|
112
112
|
window.renusifyBus.on('r-notify', this.showMe)
|
|
113
113
|
window.renusifyBus.on('hide-r-notify', this.hideMe)
|
|
114
114
|
}
|
|
115
115
|
},
|
|
116
|
-
created
|
|
116
|
+
created() {
|
|
117
117
|
this.registerBusMethods()
|
|
118
118
|
}
|
|
119
119
|
}
|
|
120
120
|
</script>
|
|
121
|
-
<style lang="scss"
|
|
122
|
-
@
|
|
121
|
+
<style lang="scss" >
|
|
122
|
+
@use "sass:map";
|
|
123
|
+
@use "../../style/variables/base";
|
|
123
124
|
|
|
124
|
-
.#{$prefix}notify {
|
|
125
|
-
display: flex;
|
|
126
|
-
align-items: center;
|
|
127
|
-
padding: 10px;
|
|
128
|
-
position: fixed;
|
|
129
|
-
width: auto;
|
|
130
|
-
height: auto;
|
|
131
|
-
z-index: map_get($z-index, 'medium');
|
|
132
|
-
overflow-y: auto;
|
|
133
|
-
max-height: 100%;
|
|
134
125
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
126
|
+
.#{base.$prefix}notify {
|
|
127
|
+
display: flex;
|
|
128
|
+
align-items: center;
|
|
129
|
+
padding: 10px;
|
|
130
|
+
position: fixed;
|
|
131
|
+
width: auto;
|
|
132
|
+
height: auto;
|
|
133
|
+
z-index: map.get(base.$z-index, 'medium');
|
|
134
|
+
overflow-y: auto;
|
|
135
|
+
max-height: 100%;
|
|
138
136
|
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
137
|
+
&.bottom-pos {
|
|
138
|
+
bottom: 0;
|
|
139
|
+
}
|
|
142
140
|
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
141
|
+
&.top-pos {
|
|
142
|
+
top: 0;
|
|
143
|
+
}
|
|
146
144
|
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
145
|
+
&.right-pos {
|
|
146
|
+
right: 0;
|
|
147
|
+
}
|
|
150
148
|
|
|
151
|
-
|
|
149
|
+
&.left-pos {
|
|
150
|
+
left: 0;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
}
|
|
152
154
|
|
|
153
155
|
</style>
|
|
@@ -62,16 +62,18 @@ export default {
|
|
|
62
62
|
}
|
|
63
63
|
</script>
|
|
64
64
|
<style lang="scss">
|
|
65
|
-
@
|
|
65
|
+
@use "sass:map";
|
|
66
|
+
@use "../../style/variables/base";
|
|
67
|
+
|
|
66
68
|
|
|
67
69
|
.notify-msg {
|
|
68
70
|
display: flex;
|
|
69
71
|
justify-content: space-between;
|
|
70
72
|
align-items: flex-start;
|
|
71
73
|
padding: 10px;
|
|
72
|
-
border-radius: map
|
|
74
|
+
border-radius: map.get(base.$borders, 'md');
|
|
73
75
|
position: relative;
|
|
74
|
-
z-index:
|
|
76
|
+
z-index: map.get(base.$z-index, 'important');
|
|
75
77
|
margin: 0.3rem 0;
|
|
76
78
|
}
|
|
77
79
|
</style>
|
|
@@ -1,12 +1,15 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
@use "../../style/variables/base";
|
|
3
|
+
@use "../../style/variables/color";
|
|
4
|
+
|
|
2
5
|
|
|
3
6
|
$progress-circle-rotate-animation: progress-circle-rotate 1.4s linear infinite !default;
|
|
4
7
|
$progress-circle-rotate-dash: progress-circle-dash 1.4s ease-in-out infinite !default;
|
|
5
8
|
$process-circle-intermediate-svg-transition: all .2s ease-in-out !default;
|
|
6
|
-
$progress-circle-underlay-stroke: rgba(map
|
|
9
|
+
$progress-circle-underlay-stroke: rgba(map.get(color.$shades, 'black'), 0.1) !default;
|
|
7
10
|
$progress-circle-overlay-transition: all .6s ease-in-out !default;
|
|
8
11
|
|
|
9
|
-
.#{
|
|
12
|
+
.#{base.$prefix}progress-circle {
|
|
10
13
|
position: relative;
|
|
11
14
|
display: inline-flex;
|
|
12
15
|
vertical-align: middle;
|
|
@@ -32,7 +35,7 @@ $progress-circle-overlay-transition: all .6s ease-in-out !default;
|
|
|
32
35
|
transition: $process-circle-intermediate-svg-transition;
|
|
33
36
|
}
|
|
34
37
|
|
|
35
|
-
.#{
|
|
38
|
+
.#{base.$prefix}progress-circle-overlay {
|
|
36
39
|
animation: $progress-circle-rotate-dash;
|
|
37
40
|
stroke-linecap: round;
|
|
38
41
|
stroke-dasharray: 80, 200;
|
|
@@ -82,7 +85,7 @@ $progress-circle-overlay-transition: all .6s ease-in-out !default;
|
|
|
82
85
|
|
|
83
86
|
//line
|
|
84
87
|
|
|
85
|
-
.#{
|
|
88
|
+
.#{base.$prefix}progress {
|
|
86
89
|
text-align: center;
|
|
87
90
|
|
|
88
91
|
.progress-outlined {
|
|
@@ -158,15 +158,18 @@ export default {
|
|
|
158
158
|
};
|
|
159
159
|
</script>
|
|
160
160
|
<style lang="scss">
|
|
161
|
-
@
|
|
161
|
+
@use "sass:map";
|
|
162
|
+
@use "../../style/variables/base";
|
|
163
|
+
@use "../../style/mixins";
|
|
162
164
|
|
|
163
|
-
|
|
165
|
+
|
|
166
|
+
.#{base.$prefix}search-box {
|
|
164
167
|
position: relative;
|
|
165
168
|
|
|
166
169
|
&.to-top {
|
|
167
170
|
.card-search {
|
|
168
171
|
bottom: 47px;
|
|
169
|
-
border-radius: map
|
|
172
|
+
border-radius: map.get(base.$borders, "md") map.get(base.$borders, "md") 0 0;
|
|
170
173
|
}
|
|
171
174
|
|
|
172
175
|
.search-open {
|
|
@@ -178,7 +181,7 @@ export default {
|
|
|
178
181
|
&:not(&.to-top) {
|
|
179
182
|
.card-search {
|
|
180
183
|
top: 47px;
|
|
181
|
-
border-radius: 0 0 map
|
|
184
|
+
border-radius: 0 0 map.get(base.$borders, "md") map.get(base.$borders, "md");
|
|
182
185
|
}
|
|
183
186
|
|
|
184
187
|
.search-open {
|
|
@@ -193,7 +196,7 @@ export default {
|
|
|
193
196
|
border: solid 1px var(--color-border);
|
|
194
197
|
color: var(--color-on-sheet);
|
|
195
198
|
position: relative;
|
|
196
|
-
border-radius: map
|
|
199
|
+
border-radius: map.get(base.$borders, "md");
|
|
197
200
|
}
|
|
198
201
|
|
|
199
202
|
|
|
@@ -219,33 +222,33 @@ export default {
|
|
|
219
222
|
position: fixed;
|
|
220
223
|
width: 100vw;
|
|
221
224
|
height: 100vh;
|
|
222
|
-
z-index:
|
|
225
|
+
z-index: map.get(base.$z-index, "medium");
|
|
223
226
|
top: 0;
|
|
224
227
|
left: 0;
|
|
225
228
|
backdrop-filter: blur(3px) grayscale(30%);
|
|
226
229
|
}
|
|
227
230
|
|
|
228
|
-
.#{
|
|
231
|
+
.#{base.$prefix}select-container {
|
|
229
232
|
.input-control {
|
|
230
233
|
border-radius: 0;
|
|
231
234
|
min-height: 30px;
|
|
232
|
-
@include ltr() {
|
|
235
|
+
@include mixins.ltr() {
|
|
233
236
|
border-right: 1px solid var(--color-sheet-container-low) !important;
|
|
234
237
|
}
|
|
235
238
|
|
|
236
|
-
@include rtl() {
|
|
239
|
+
@include mixins.rtl() {
|
|
237
240
|
border-left: 1px solid var(--color-sheet-container-low) !important;
|
|
238
241
|
}
|
|
239
242
|
}
|
|
240
243
|
|
|
241
244
|
.card-select {
|
|
242
245
|
top: -6px;
|
|
243
|
-
border-radius: map
|
|
244
|
-
@include ltr() {
|
|
246
|
+
border-radius: map.get(base.$borders, "md");
|
|
247
|
+
@include mixins.ltr() {
|
|
245
248
|
border-top-right-radius: 0 !important;
|
|
246
249
|
}
|
|
247
250
|
|
|
248
|
-
@include rtl() {
|
|
251
|
+
@include mixins.rtl() {
|
|
249
252
|
border-top-left-radius: 0 !important;
|
|
250
253
|
}
|
|
251
254
|
}
|
|
@@ -27,9 +27,11 @@ export default {
|
|
|
27
27
|
</script>
|
|
28
28
|
|
|
29
29
|
<style lang="scss">
|
|
30
|
-
@
|
|
30
|
+
@use "sass:map";
|
|
31
|
+
@use "../../style/variables/base";
|
|
31
32
|
|
|
32
|
-
|
|
33
|
+
|
|
34
|
+
.#{base.$prefix}skeleton {
|
|
33
35
|
.sk-card, .sk-line, .sk-avatar {
|
|
34
36
|
background: rgba(0, 0, 0, 0.12);
|
|
35
37
|
overflow: hidden;
|
|
@@ -55,7 +57,7 @@ export default {
|
|
|
55
57
|
}
|
|
56
58
|
|
|
57
59
|
.sk-card {
|
|
58
|
-
border-radius: map
|
|
60
|
+
border-radius: map.get(base.$borders, 'sm');
|
|
59
61
|
}
|
|
60
62
|
|
|
61
63
|
.sk-line {
|
|
@@ -187,7 +187,10 @@ export default {
|
|
|
187
187
|
}
|
|
188
188
|
</script>
|
|
189
189
|
<style lang="scss">
|
|
190
|
-
@
|
|
190
|
+
@use "sass:map";
|
|
191
|
+
@use "../../style/variables/base";
|
|
192
|
+
@use "../../style/mixins";
|
|
193
|
+
|
|
191
194
|
|
|
192
195
|
.slider-progress {
|
|
193
196
|
width: 100%;
|
|
@@ -199,25 +202,25 @@ export default {
|
|
|
199
202
|
.btn-left-arrow {
|
|
200
203
|
position: absolute;
|
|
201
204
|
top: 50%;
|
|
202
|
-
@include ltr() {
|
|
205
|
+
@include mixins.ltr() {
|
|
203
206
|
left: 20px;
|
|
204
207
|
}
|
|
205
|
-
@include rtl() {
|
|
208
|
+
@include mixins.rtl() {
|
|
206
209
|
right: 20px
|
|
207
210
|
}
|
|
208
|
-
z-index: map
|
|
211
|
+
z-index: map.get(base.$z-index, 'low');
|
|
209
212
|
}
|
|
210
213
|
|
|
211
214
|
.btn-right-arrow {
|
|
212
215
|
position: absolute;
|
|
213
216
|
top: 50%;
|
|
214
|
-
@include rtl() {
|
|
217
|
+
@include mixins.rtl() {
|
|
215
218
|
left: 20px;
|
|
216
219
|
}
|
|
217
|
-
@include ltr() {
|
|
220
|
+
@include mixins.ltr() {
|
|
218
221
|
right: 20px
|
|
219
222
|
}
|
|
220
|
-
z-index: map
|
|
223
|
+
z-index: map.get(base.$z-index, 'low');
|
|
221
224
|
}
|
|
222
225
|
|
|
223
226
|
.slider-right {
|
|
@@ -230,10 +233,10 @@ export default {
|
|
|
230
233
|
}
|
|
231
234
|
|
|
232
235
|
&-enter-from {
|
|
233
|
-
@include rtl() {
|
|
236
|
+
@include mixins.rtl() {
|
|
234
237
|
transform: translateX(-200px);
|
|
235
238
|
}
|
|
236
|
-
@include ltr() {
|
|
239
|
+
@include mixins.ltr() {
|
|
237
240
|
transform: translateX(200px);
|
|
238
241
|
}
|
|
239
242
|
|
|
@@ -241,10 +244,10 @@ export default {
|
|
|
241
244
|
}
|
|
242
245
|
|
|
243
246
|
&-leave-to {
|
|
244
|
-
@include rtl() {
|
|
247
|
+
@include mixins.rtl() {
|
|
245
248
|
transform: translateX(200px);
|
|
246
249
|
}
|
|
247
|
-
@include ltr() {
|
|
250
|
+
@include mixins.ltr() {
|
|
248
251
|
transform: translateX(-200px);
|
|
249
252
|
}
|
|
250
253
|
|
|
@@ -262,10 +265,10 @@ export default {
|
|
|
262
265
|
}
|
|
263
266
|
|
|
264
267
|
&-enter-from {
|
|
265
|
-
@include rtl() {
|
|
268
|
+
@include mixins.rtl() {
|
|
266
269
|
transform: translateX(200px);
|
|
267
270
|
}
|
|
268
|
-
@include ltr() {
|
|
271
|
+
@include mixins.ltr() {
|
|
269
272
|
transform: translateX(-200px);
|
|
270
273
|
}
|
|
271
274
|
|
|
@@ -273,10 +276,10 @@ export default {
|
|
|
273
276
|
}
|
|
274
277
|
|
|
275
278
|
&-leave-to {
|
|
276
|
-
@include rtl() {
|
|
279
|
+
@include mixins.rtl() {
|
|
277
280
|
transform: translateX(-200px);
|
|
278
281
|
}
|
|
279
|
-
@include ltr() {
|
|
282
|
+
@include mixins.ltr() {
|
|
280
283
|
transform: translateX(200px);
|
|
281
284
|
}
|
|
282
285
|
|
|
@@ -149,9 +149,9 @@ export default {
|
|
|
149
149
|
}
|
|
150
150
|
</script>
|
|
151
151
|
<style lang="scss">
|
|
152
|
-
@
|
|
152
|
+
@use "../../style/variables/base";
|
|
153
153
|
|
|
154
|
-
.#{
|
|
154
|
+
.#{base.$prefix}swiper {
|
|
155
155
|
width: 100%;
|
|
156
156
|
max-width: 100%;
|
|
157
157
|
height: 100%;
|
|
@@ -221,9 +221,9 @@ export default {
|
|
|
221
221
|
name: 'r-table-crud',
|
|
222
222
|
components: {
|
|
223
223
|
ManageHeader: defineAsyncComponent(() =>
|
|
224
|
-
import("./header")
|
|
224
|
+
import("./header.vue")
|
|
225
225
|
), ManageFooter: defineAsyncComponent(() =>
|
|
226
|
-
import("./footer")
|
|
226
|
+
import("./footer.vue")
|
|
227
227
|
)
|
|
228
228
|
},
|
|
229
229
|
props: {
|