I'm trying to bind image src dynamically to a URL of the form ../assets/project_screens/image_name.jpg
.
My directory structure looks like:
- src
-- assets
---- project_screens
-- profile
---- ProjectList.vue
-- store
---- profile.js
I know that I need to use webpack's require("path/to/image")
to help webpack build those images, but the path doesn't resolve.
// store/profile.js
projects = [
{
....
},
{
....
img_url: "../assets/project_screens/im1.jpg"
....
}
....
]
// profile/ProjectList.vue
<md-card
class="md-layout-item project-card"
v-for="(project, idx) in projects"
:key="idx"
>
<md-card-media>
<img :src="require(project.img_url)" alt="People" />
</md-card-media>
</md-card>
If I used a URL string instead of dynamically passing the URL string it works. Looked around stack overflow and none of the solutions helped. Am I missing something else ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…