0👍
Hmn I’ve never heard about it and the project page is asking for contributers and this lib has more than 100 issues. So my suggestion is change the lib. I’ve made good experiences with https://github.com/KoRiGaN/Vue2Leaflet
- [Vuejs]-How to create load more in search result with vue js and laravel
- [Vuejs]-How to make a <tr> element in vuejs that contains <slot> with html
0👍
You can do it on beforeMount()
lifecycle hook.
beforeMount() {
loadGmapApi({
key: apiKeyProp
});
}
Source:stackexchange.com