Resize the box to see changes

useElementSize

Reactive size of an HTML element. ResizeObserver MDN

Usage

<template>
  <div ref="el">
    Height: {{ height }}
    Width: {{ Width }}
  </div>
</template>

<script>
import { ref } from 'vue'
import { useElementSize } from '@vueuse/core'

export default {
  setup() {
    const el = ref(null)
    const { width, height } = useElementSize(el)

    return {
      el,
      width,
      height,
    }
  }
})
</script>

Component

<UseElementSize v-slot="{ width, height }">
  Width: {{ width }}
  Height: {{ height }}
</UseElementSize>
Learn more about component usage

Type Declarations

export interface ElementSize {
  width: number
  height: number
}
/**
 * Reactive size of an HTML element.
 *
 * @see https://vueuse.org/useElementSize
 * @param target
 * @param callback
 * @param options
 */
export declare function useElementSize(
  target: MaybeElementRef,
  initialSize?: ElementSize,
  options?: ResizeObserverOptions
): {
  width: Ref<number>
  height: Ref<number>
}
export declare type UseElementSizeReturn = ReturnType<typeof useElementSize>

Source

SourceDemoDocs