<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?
I am only using the
does 'MyComponent' mean I can use a template and pass an object as parm and use it to build info window UI? like dialog?