Skip to content
Дэмиен Безбородов edited this page Feb 13, 2018 · 3 revisions

Tips

VueGoogleMaps

If you are using VueGoogleMaps inside a Tabs component, the map may not display correctly after it is hidden. To correct this, try setting an event listener to resize the map:

<tabs nav-style="tabs" @active="tabActive">

methods: {
    tabActive(index) {
        this.$gmapDefaultResizeBus.$emit('resize');
    }
},
Clone this wiki locally