hey, i have two components next to each other. The structure is the following:
<template>
<b-container fluid>
<b-row v-if="settings">
<b-col xl="9">
<ProductConfigurator :key="componentKey" />
</b-col>
<b-col xl="3">
<ConfigurationSummary />
</b-col>
</b-row>
<div v-else-if="fetchSettingsError">
<Error v-bind:errorMessage="fetchSettingsError" />
</div>
</b-container>
</template>
The ConfigurationSummary contains a list that will be longer or shorter depending on the content, which is added dynamically.
Now when i add alot of items the height of the view will dynamically increase. But when that happens, i would like to notice the height change in the ProductConfigurator component. Is there any way to detect height changes and execute some custom code?
Thanks alot!