Answer the question
In order to leave comments, you need to log in
Mounted doesn't apply styles?
Hello, in vue 3 I try to take el.parentElement.style.height on mounted and get 0, after a few milliseconds everything works, it looks like mounted styles are not applied, but only later, what hook or approach should I use to get el.parentElement correctly. style.height on page load?
Answer the question
In order to leave comments, you need to log in
Replace el with refs and look towards nextTick :
mounted(){
this.$nextTick(()=>{
this.$refs.ELEMENT.parentElement.style.height
})
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question