Hey there, hope you're all doing well. I'm curious about how to use the v-for method in Vue js to display a list of images.
For example, if I have code that looks like this:
<v-flex>
<h4>{{$translate('bz_doc_path')}}</h4>
<p><a :href="business_doc_path">{{business_doc_path}}</a></p>
<v-img
:src="business_doc_path"
max-width="50%"
max-height="auto"
/>
</v-flex>
Here is the data component:
<script>
export default {
data(){
return {
business_doc_path: this.props.business_doc_path
}
},
props:[
'props'
],
computed:{
r(){
return this.props
},
}
}
</script>