1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-02-24 17:39:06 +00:00
Nuxt/examples/with-vuetify/pages/about.vue

19 lines
477 B
Vue

<template>
<v-carousel>
<v-carousel-item v-for="(src, i) in images" :src="src" :key="i"/>
</v-carousel>
</template>
<script>
export default {
data: () => ({
images: [
'https://vuetifyjs.com/static/doc-images/carousel/squirrel.jpg',
'https://vuetifyjs.com/static/doc-images/carousel/sky.jpg',
'https://vuetifyjs.com/static/doc-images/carousel/bird.jpg',
'https://vuetifyjs.com/static/doc-images/carousel/planet.jpg'
]
})
}
</script>