@burh/nuxt-core 1.0.118 → 1.0.119
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.
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
|
|
72
72
|
<div class="socials text-center mt-5">
|
|
73
73
|
<a
|
|
74
|
-
:href="baseUrl + '/' + userData.
|
|
74
|
+
:href="baseUrl + '/' + userData.slug.slug"
|
|
75
75
|
class="text-center"
|
|
76
76
|
target="_blank"
|
|
77
77
|
rel="noopener noreferrer"
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
|
|
124
124
|
<div class="burh-code text-center mt-4">
|
|
125
125
|
<vue-qrcode
|
|
126
|
-
:value="baseUrl + '/' + userData.
|
|
126
|
+
:value="baseUrl + '/' + userData.slug.slug"
|
|
127
127
|
:options="{ width: 98, height: 98 }"
|
|
128
128
|
class="border qr-code"
|
|
129
129
|
></vue-qrcode>
|
|
@@ -143,12 +143,8 @@ export default {
|
|
|
143
143
|
VueQrcode
|
|
144
144
|
},
|
|
145
145
|
props: {
|
|
146
|
-
userData: Object
|
|
147
|
-
|
|
148
|
-
data() {
|
|
149
|
-
return {
|
|
150
|
-
baseUrl: process.env.baseAppUrl
|
|
151
|
-
};
|
|
146
|
+
userData: Object,
|
|
147
|
+
baseUrl: String
|
|
152
148
|
},
|
|
153
149
|
methods: {
|
|
154
150
|
getTime(
|