0👍
✅
When you use v-bind
, the value must be a JavaScript expression.
<img class="workimg" v-bind:src="`/featured/${item.imagemobile}`">
or
<img class="workimg" v-bind:src="'/featured/' + item.imagemobile">
should work.
Source:stackexchange.com