leaflet-src.js:1582未捕获(承诺中)TypeError:无法读取未定义的属性

问题描述 投票:0回答:1
javascript vue.js leaflet
1个回答
0
投票

我发现的一个解决方案是将 LPopup 移动到父文件中。 这有效......但我不知道为什么这有效,而上述代码却无效。

解决方法:

家长:

<LMarker
    v-for="listing in listings"
        :latlng="[listing.lat, listing.lon]"
>
    <LPopup>
      <ChildVue />
    </LPopup> 
</LMarker>

孩子:

<template>
   <p>Hello world!</p>
</template>
© www.soinside.com 2019 - 2024. All rights reserved.