<map id="map" ref="map" :markers="mapMarkers">
<cover-view slot="callout">
<cover-view
class="customMarker"
v-for="(item, iii) in mapMarkers" :key="iii"
:marker-id="item.id"
>
<cover-view class="content">{{item.content}}</cover-view>
<cover-image class="icon" :src="item.iconPath_"></cover-image>
</cover-view>
</cover-view>
</map>
如上,使用插槽实现自定义气泡效果时,气泡部分有一个溢出隐藏overflow:hidden, 我使用.customMarker{ overflow:visible; }可以在开发工具上实现取消溢出隐藏,但真机就无效了。请问这种怎么解决?
https://developers.weixin.qq.com/s/SQO97CmW7SNy
蓝框就是class="customMarker",真机中设置.customMarker{ overflow:visible; }无效
开发中工具效果
真机效果
贴代码片段