Darin Reid
Darin Reid
This would be a great addition.
EDIT: use the solution [below](https://github.com/vuejs/Discussion/issues/394#issuecomment-326145030). ``` js // In your component or mixin: created () { // would work in 'ready', 'attached', etc. window.addEventListener('load', () => { // https://developer.mozilla.org/en-US/docs/Web/API/CSS_Object_Model/Determining_the_dimensions_of_elements console.log(this.$el.clientHeight)...
In Vue 2.x, `ready` was replaced by [`mounted`](https://vuejs.org/v2/guide/migration.html#ready-replaced). ```js mounted () { this.$nextTick(() => { console.log(this.$el.clientHeight) }) } ```
@pxwee5 try a reduced test case? https://codepen.io/elcontraption/pen/eEbvRp/.
Hey @sadeghbarati @jonnitto with everything going on, I doubt I'll be doing any updates or maintenance here. I'd love to hear about any progress though. Thanks!
Hey @zzwch, I don't believe I ever tested text, so I'm not surprised it's not working. It's been a long time since I've worked on this. Let me know if...
+1 this seems very Metafizz-y.