Здравствуйте, подскажите как правильно получать динамически высоту блока? На ум приходит setInterval, но думаю что плохая идея. Еще, есть ли смысл использовать computed вместо methods?
<template>
<section ref='height'>
<div class="slider-text">
<h1>TEXT</h1>
<span>lorem ipsum</span>
</div>
</section>
</template>
<script>
export default {
name: 'MainSlider',
data () {
return {
}
},
methods: {
watchHeight() {
console.log(this.$refs.height.clientHeight)
}
},
mounted(){
this.watchHeight()
}
}
</script>