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.
40 lines
624 B
40 lines
624 B
<template>
|
|
<div id="app">
|
|
<h1>Kolotoč</h1>
|
|
<Kolotoc :images="images"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Kolotoc from './components/Kolotoc'
|
|
export default {
|
|
name: 'App',
|
|
components:{
|
|
Kolotoc
|
|
},
|
|
data: function() {
|
|
return {
|
|
images: [
|
|
{
|
|
src: "/img/image_01.jpg",
|
|
title: "Obrázek 1"
|
|
},
|
|
{
|
|
src: "/img/image_02.jpg",
|
|
title: "Obrázek 2"
|
|
},
|
|
{
|
|
src: "/img/image_03.jpg",
|
|
title: "Obrázek 3"
|
|
}
|
|
],
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.active {
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
|