So I need to get the sizes of an image shown in my page using Vuetify v-img.
I tried to get the size with naturalHeight and naturalWidth by doing so:
//markup
<v-img ref="imageShow" @load="getSizes" src"/images/background.jpg"></v-img>
//method
getSizes(){
console.log(this.$refs.imageShow.naturalHeigth)
}
but it didn't show me the size, it returns undefined.