I use carousel component from https://vuetifyjs.com/en/components/carousels
<section v-show="artistImagesList.length > 0">
<v-carousel>
<v-carousel-item v-for="(nextArtistImage,i) in artistImagesList" :src="nextArtistImage.image_url" :key="nextArtistImage.id" :alt="nextArtistImage.image_url">
<div class="carousel_image_title">{{ concatStr(nextArtistImage.description, 100) }}</div>
</v-carousel-item>
</v-carousel>
</section>
Using it I need more options to control some images like
1) If images are too big in width/height I want to show images with size ratio of carousel size. Is it possibel?
2) How set max width/height for image area?
3) When I open page with seconds interval default I see empty carousel area and only after interval default seconds first image is opened. I set valid list of images, without empty elements. But looks like some empty image is opened at first.
Is it wrapper of some library? Can I get access to its options? Please give reference to example how to make it...
Packages used
vue.js2.5.7
vuetify,1.0.8