在我的vue模板中,我有
<img class="workimg" v-bind:src="item.imagemobile">
我想尝试将其附加到
<img class="workimg" v-bind:src="/featured/item.imagemobile">
语法会破坏应用程序,这可能吗?
答案 0 :(得分:0)
使用v-bind
时,该值必须是JavaScript表达式。
<img class="workimg" v-bind:src="`/featured/${item.imagemobile}`">
或
<img class="workimg" v-bind:src="'/featured/' + item.imagemobile">
应该有用。