Here's the template in my component code
<template>
<img :src="'@/assets/images/' + imagesrc" />
</template>
This ends up rending as
<img src="@/assets/images/vacation.png">
I cannot figure out the proper syntax to make this work with attribute binding.