我发现的一个解决方案是将 LPopup 移动到父文件中。 这有效......但我不知道为什么这有效,而上述代码却无效。
解决方法:
家长:
<LMarker
v-for="listing in listings"
:latlng="[listing.lat, listing.lon]"
>
<LPopup>
<ChildVue />
</LPopup>
</LMarker>
孩子:
<template>
<p>Hello world!</p>
</template>