@abi-software/map-side-bar 2.14.6 → 2.14.7
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
|
@@ -638,14 +638,19 @@ export default {
|
|
|
638
638
|
},
|
|
639
639
|
},
|
|
640
640
|
created: function () {
|
|
641
|
-
this.
|
|
641
|
+
if (this.entry.detailsReady) {
|
|
642
|
+
this.getBanner()
|
|
643
|
+
}
|
|
642
644
|
},
|
|
643
645
|
watch: {
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
646
|
+
'entry.detailsReady':{
|
|
647
|
+
immediate: true,
|
|
648
|
+
handler: function (val) {
|
|
649
|
+
if (val === true) {
|
|
650
|
+
this.getBanner()
|
|
651
|
+
}
|
|
652
|
+
},
|
|
653
|
+
}
|
|
649
654
|
},
|
|
650
655
|
}
|
|
651
656
|
</script>
|