Clearly I'm missing something simple here. Inside a template I'm simply trying to add a path to an image file name sourced from an object. I've tried a bunch of things, back ticks mustaches, etc. but Vue doesn't like any of them. How do I format this properly?
<img class="img-fluid" v-bind:src="assets/img/" {{playerDetail.pic}} alt="">
playerDetail.pic = "player_image.png"