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)
- [Vuejs]-Vue2 + laravel6 – Component implementation
- [Vuejs]-How can I call a method from onSubmit functon in Vue?
Source:stackexchange.com