I am using Vue and my image paths are not working. I have tried these different variations:
<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>
I have my images in my src/assets folder and the full path is src/assets/images/workouts. I always get a little icon not displaying the image. image not showing up
edit: I do not put anything in the tag