You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
691 B
39 lines
691 B
<template>
|
|
<div class="home">
|
|
<h1>{{title}}</h1>
|
|
|
|
<div class="row">
|
|
<div class="card"
|
|
v-for="(data,index) in produkty"
|
|
:key="index">
|
|
<img :src="data.image" alt="Obrazek">
|
|
<h3>{{data.proTitle}}</h3>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'HomeView',
|
|
data(){
|
|
return{
|
|
title:"Seznam",
|
|
produkty: [
|
|
{ //OBJEKT 1
|
|
proTitle:"Title Best",
|
|
image: require('../assets/logo.png'),
|
|
proId: 1
|
|
},
|
|
{ //OBJEKT 2
|
|
proTitle:"Title but Better",
|
|
image: require('../assets/logo.png'),
|
|
proId: 2
|
|
}
|
|
]
|
|
}
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|