@burh/nuxt-core 1.0.484 → 1.0.486
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.
|
@@ -188,10 +188,7 @@
|
|
|
188
188
|
)}`
|
|
189
189
|
)
|
|
190
190
|
"
|
|
191
|
-
|
|
192
|
-
{{ cou.name }} - {{ cou.end_year }}
|
|
193
|
-
{{ getTime(false, cou) }}
|
|
194
|
-
</p>
|
|
191
|
+
/>
|
|
195
192
|
</div>
|
|
196
193
|
</div>
|
|
197
194
|
</template>
|
|
@@ -538,7 +535,7 @@ export default {
|
|
|
538
535
|
font-weight: 600;
|
|
539
536
|
outline: 0;
|
|
540
537
|
|
|
541
|
-
padding:
|
|
538
|
+
padding: 0px 5px;
|
|
542
539
|
}
|
|
543
540
|
}
|
|
544
541
|
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
<input
|
|
92
92
|
v-if="slug"
|
|
93
93
|
id="linkShareModal"
|
|
94
|
-
:value="`${baseUrl}`"
|
|
94
|
+
:value="`${baseUrl}/${slug}`"
|
|
95
95
|
type="text"
|
|
96
96
|
class="ml-5 form-control social social-input"
|
|
97
97
|
readonly
|
|
@@ -129,12 +129,11 @@ export default {
|
|
|
129
129
|
share_token:{
|
|
130
130
|
type:String,
|
|
131
131
|
default: ''
|
|
132
|
-
}
|
|
132
|
+
},
|
|
133
133
|
},
|
|
134
134
|
data() {
|
|
135
135
|
return {
|
|
136
136
|
slug: null,
|
|
137
|
-
baseUrl:''
|
|
138
137
|
};
|
|
139
138
|
},
|
|
140
139
|
methods: {
|
|
@@ -159,6 +158,9 @@ export default {
|
|
|
159
158
|
baseBussinesUrl() {
|
|
160
159
|
return process.env.baseAppUrl;
|
|
161
160
|
},
|
|
161
|
+
baseUrl() {
|
|
162
|
+
return process.env.baseUserUrl;
|
|
163
|
+
},
|
|
162
164
|
},
|
|
163
165
|
watch: {
|
|
164
166
|
isActive(newValue) {
|
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
<div class="card-app-buffer">
|
|
3
|
+
<skeleton-animate rounded :width="40" :height="40" />
|
|
4
|
+
<skeleton-animate
|
|
5
|
+
rounded
|
|
6
|
+
:width="80"
|
|
7
|
+
:height="15"
|
|
8
|
+
class="text-skeleton"
|
|
9
|
+
/>
|
|
10
|
+
</div>
|
|
11
11
|
</template>
|
|
12
12
|
|
|
13
13
|
<script>
|
|
14
14
|
import SkeletonAnimate from './SkeletonAnimate.vue';
|
|
15
15
|
|
|
16
16
|
export default {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
name: 'buffer-folder-skeleton',
|
|
18
|
+
components: {
|
|
19
|
+
SkeletonAnimate
|
|
20
|
+
}
|
|
21
21
|
};
|
|
22
22
|
</script>
|
|
23
23
|
|
|
24
24
|
<style lang="scss" scoped>
|
|
25
|
-
.card-app {
|
|
25
|
+
.card-app-buffer {
|
|
26
26
|
width: 22%;
|
|
27
27
|
display: flex;
|
|
28
28
|
align-items: center;
|
|
@@ -30,6 +30,10 @@ export default {
|
|
|
30
30
|
height: 5.625rem !important;
|
|
31
31
|
flex-direction: row;
|
|
32
32
|
padding: 1.875rem 2.18rem !important;
|
|
33
|
+
box-shadow: 0 0 1em rgba(74, 82, 90, 0.15);
|
|
34
|
+
border: 2px solid transparent;
|
|
35
|
+
border-radius: 5px;
|
|
36
|
+
margin-bottom: 1rem;
|
|
33
37
|
|
|
34
38
|
& + div {
|
|
35
39
|
margin: 0 1rem;
|