For my Vue project, I am encountering issues with the image paths not working properly. Despite trying different variations, such as:
<figure class="workout-image">
<img :src= "images.bicep" width= "200px" length= "300px">
<figcaption>Bicep Curl</figcaption>
</figure>
<figure class="workout-image">
<img :src= "'https://thumbs.dreamstime.com/z/bench-press-exercise-chest-man-doing-workout-bench-press-exercise-chest-man-doing-workout-barbell-bodybuilder-157558597.jpg'" width= "200px" length= "300px">
<figcaption>Bench Press</figcaption>
</figure>
<figure class="workout-image">
<img v-bind:src= "'../assets/images/workouts/TricepExtension.png'" width= "200px" length= "300px">
<figcaption>Tricep Extension</figcaption>
</figure>
The images are located in the src/assets folder with the full path being src/assets/images/workouts. However, instead of displaying the image, an icon indicating a broken image appears. image not showing up
It is worth noting that I do not include anything in the img tag.