<cover-image class="heroSelectionBar" src="../../static/images/heroSelectionBar/6.png"> <cover-image class="jb" src="../../static/images/heroSelectionBar/jb.png"></cover-image> </cover-image> 其中.jb标签不显示
时间: 2023-07-02 18:21:53 浏览: 127
在你提供的代码中,嵌套的`cover-image`组件中的`src`属性路径都是相对路径,可能会出现路径不正确的情况。你可以尝试使用绝对路径来引用图片,或者使用`require`函数来引用图片,例如:
```
<cover-image class="heroSelectionBar" src="/static/images/heroSelectionBar/6.png">
<cover-image class="jb" src="/static/images/heroSelectionBar/jb.png"></cover-image>
</cover-image>
```
或者:
```
<cover-image class="heroSelectionBar" :src="require('@/static/images/heroSelectionBar/6.png')">
<cover-image class="jb" :src="require('@/static/images/heroSelectionBar/jb.png')"></cover-image>
</cover-image>
```
如果依然不能解决问题,你可以检查一下浏览器控制台是否有报错信息。另外,你可以提供一下`cover-image`组件的代码和相关的错误信息,这样我可以更好地帮助你解决问题。
阅读全文