So This is correct way to display image in vue
<img class="cur-img" src="~@/assets/img/test.png" alt="temp-img">
However, the following way is incorrect, if templateImg is a string represent by "~@/assets/img/test.png"
<div v-for="(item,index) in items" :key="index">
<img :src="item.templateImg" alt="template-img">
</div>
Is there any way to fix it?
