adata-ui 0.3.76 → 0.3.78
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/dist/adata-ui.common.js +58 -57
- package/dist/adata-ui.common.js.map +1 -1
- package/dist/adata-ui.css +1 -1
- package/dist/adata-ui.umd.js +58 -57
- package/dist/adata-ui.umd.js.map +1 -1
- package/dist/adata-ui.umd.min.js +2 -2
- package/dist/adata-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Header/ChildLinks.vue +5 -2
- package/src/components/ServiceSlider/AServiceSlider.vue +1 -1
package/package.json
CHANGED
|
@@ -15,11 +15,14 @@
|
|
|
15
15
|
<span class="child-links__info__item__subtitle">{{ link.subtitle }}</span>
|
|
16
16
|
</p>
|
|
17
17
|
</component>
|
|
18
|
-
<
|
|
18
|
+
<component
|
|
19
|
+
:is="module === links.key? 'nuxt-link': 'a'"
|
|
20
|
+
:to="module === links.key ? link.to: null"
|
|
21
|
+
:href="module === links.key ? links.to: `${links[mode]}${link.to}`" class="child-links__info-arrow">
|
|
19
22
|
<svg width="24" height="24" class="ic-24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
20
23
|
<path d="M9 18L15 12L9 6" stroke="#007AFF" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
|
|
21
24
|
</svg>
|
|
22
|
-
</
|
|
25
|
+
</component>
|
|
23
26
|
</div>
|
|
24
27
|
</li>
|
|
25
28
|
</ul>
|
|
@@ -534,7 +534,7 @@ export default {
|
|
|
534
534
|
},
|
|
535
535
|
async created() {
|
|
536
536
|
this.navigation = this.navigations[0]
|
|
537
|
-
await this.fetchCurrencies()
|
|
537
|
+
// await this.fetchCurrencies()
|
|
538
538
|
},
|
|
539
539
|
mounted() {
|
|
540
540
|
this.$refs.arrow.addEventListener("touchstart", evt => this.touchstart(evt), {passive: true})
|