0👍
Put your gallery images in array and @click set image src to selected image
<li v-for="img in gallery">
<img :src="img" @click="selected_iamge=img" >
</li>
Here is Codepen sample
- [Vuejs]-VueJS + Firebase Using the Firebase Binding
- [Vuejs]-Cannot figure out how to assign a callbacks return value into another property (Vue.js)
Source:stackexchange.com