vue-match-heights
vue-match-heights copied to clipboard
Use with v-for, set the height of the first element
Hi,
When I use vue-match-heights with v-for, it applies the height of my first element to the others.
How to run it once the v-for has been rendered?
I use it in bootstrap-vue carousel.
adding a timeout worked for me
mounted() { setTimeout(() => { document.dispatchEvent(new CustomEvent('matchheight', {})); }, 200); }