useResizeObserver
useResizeObserver
要素のコンテンツまたはボーダーボックスの寸法の変化を報告します
使用法
<script setup lang="ts">
import { useResizeObserver } from '@vueuse/core'
import { ref, useTemplateRef } from 'vue'
const el = useTemplateRef('el')
const text = ref('')
useResizeObserver(el, (entries) => {
const entry = entries[0]
const { width, height } = entry.contentRect
text.value = `width: ${width}, height: ${height}`
})
</script>
<template>
<div ref="el">
{{ text }}
</div>
</template>
ディレクティブの使用法
<script setup lang="ts">
import { vResizeObserver } from '@vueuse/components'
const text = ref('')
function onResizeObserver(entries) {
const [entry] = entries
const { width, height } = entry.contentRect
text.value = `width: ${width}, height: ${height}`
}
</script>
<template>
<div v-resize-observer="onResizeObserver">
{{ text }}
</div>
</template>
© 2019–PRESENT Anthony Fu https://github.com/antfu
※このページは Nuxt.js 公式ドキュメントの翻訳ページです。
公式ドキュメントの該当ページはこちら:
#