[Vuejs]-Vue2 error: "Unknown custom element: <gmap-infowindow>"

1👍

The InfoWindow component is globally registered under the name of GmapInfoWindow instead of “GmapInfowindow”; so in your template, change this <gmap-infowindow> into <gmap-info-window>. Unless you registered it locally, with different name (which doesn’t seem to be the case).

👤Yom T.

Leave a comment