My project saves users' profile images path in the database as varchar which is transfer into String in the backend and use JSON to send it to the frontend. How can I use this string to display an image by Vue?
Here you can see: Image URL can be received as a "string" by frontend correctly
I have tried for
<img class="user-profile-image" v-bind:src=userProfileImagePath>
<img class="user-profile-image" :src=userProfileImagePath>
<img class="user-profile-image" src=userProfileImagePath>
<img class="user-profile-image" src="userProfileImagePath">
But they all didn't work. How can I do?
<img>