You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When adding a marker using the new slots api the marker doesn't appear on the map.
Solution
It appears the Marker.vue UI component sets the marker in state using this.$slots. See here. this.$slots doesn't show scoped slots when a user uses the newer slots syntax. See here for why that is. The Marker.vue component should reference this.$scopedSlots instead of this.$slots. That would enable users to use the new slot syntax.
The text was updated successfully, but these errors were encountered:
Issue
When adding a marker using the new slots api the marker doesn't appear on the map.
Solution
It appears the Marker.vue UI component sets the marker in state using this.$slots. See here. this.$slots doesn't show scoped slots when a user uses the newer slots syntax. See here for why that is. The Marker.vue component should reference this.$scopedSlots instead of this.$slots. That would enable users to use the new slot syntax.
The text was updated successfully, but these errors were encountered: