NathanAP / vue-google-maps-community-fork

The community fork for Vue Google Maps library
https://vue-google-maps-community-fork.netlify.app
MIT License
108 stars 33 forks source link

Marker info popup content doesn't show as documented #102

Open sdetweil opened 5 months ago

sdetweil commented 5 months ago
<GMapMap>
  <GMapMarker :key="index" v-for="(m, index) in markers">
    <GMapInfoWindow>
      <div>I am in info window</div>
      <MyComponent text="I am a custom component inside the info window!" />
    </GMapInfoWindow>
  </GMapMarker>
</GMapMap>

I am only using the

approach at the moment.

does 'MyComponent' mean I can use a template and pass an object as parm and use it to build info window UI? like dialog?