[Vuejs]-Best way to handle various sizes of images in ImageKit

0👍

You can use the <ik-image> component of Imagekit Vue SDK to set the same height and width for all of your images like this –
<ik-image :src="your_image_src" :transformation="[{ height: 300, width: 400 }]" /> (assuming you have installed Imagekit plugin using Vue.use and specified required parameters there)

Leave a comment