Hightlight code

This commit is contained in:
Fawad Mirzad
2021-02-14 10:49:10 +01:00
parent 10079c67e0
commit 2844833ed1

View File

@@ -17,13 +17,15 @@ You can create info window by passing custom HTML or Vue components as the child
## Open/close info window ## Open/close info window
You can pass `opened` prop to open and close InfoWindows. You can pass `opened` prop to open and close InfoWindows.
```vue ```vue{7}
<GmapMap> <GmapMap>
<GmapMarker <GmapMarker
:key="index" :key="index"
v-for="(m, index) in markers" v-for="(m, index) in markers"
> >
<GmapInfoWindow :opened="true"> <GmapInfoWindow
:opened="true"
>
<div>I am in info window <MyComponent/> <div>I am in info window <MyComponent/>
</div> </div>
</GmapInfoWindow> </GmapInfoWindow>