【发布时间】:2018-11-16 20:29:18
【问题描述】:
所以,我正在玩 Vue Js,目前在子组件上显示图像时遇到了一些问题,所以,这就是它的样子:
父组件:
<list>
<post name="post 1" image="somePath"/>
<post name="post 2" image="somePath"/>
</list>
在我们得到的子组件上
<post>
<p> {{name}} </p>
<img src={{somePath}} />
</post>
我尝试了几种使用 require 的方法,以及其他方法...... 到目前为止,他们都没有工作...... 有什么建议? 另外,这是我的 img 路径的样子
"@/assets/web/mock/Phonebeats.png"
【问题讨论】:
标签: image vue.js components react-props