resize-observer-vue
TypeScript icon, indicating that this package has built-in type declarations

1.2.0 • Public • Published

resize-observer-vue

NPM version NPM downloads

🏄‍♀️ docs
Or if you want to use react 🤸‍♂️ for react

效果

The width of the case box is 100% by default. You need to manually switch the viewport width

what?🙊

Whether the size and location of the listening component have changed, Only support vue3

How to use it? 🙈

pnpm add resize-observer-vue

1. Similar to the use of react high-order components

import

import { createApp } from 'vue'
import ResizeObserver from 'resize-observer-vue'
import App from './example/App.vue'

const app = createApp(App)

app.use(ResizeObserver).mount('#app')

Or introduced as a component

import { ResizeObserver } from 'resize-observer-vue'

use

<ResizeObserver :on-resize="callback" :disabled="false">
    <TargetComponent/>
<ResizeObserver/>

2. The same supports vue instructions

registration Directive

import { directive } from 'resize-observer-vue'
const app = createApp({})

app.directive('resize', directive)

use

<TargetComponent v-resize:[disabled]="callback" />

API

Property Type Default Description
disabled boolean false Whether to disable observation
onResize ({ width, height }) => void - Trigger when child node resized

Package Sidebar

Install

npm i resize-observer-vue

Weekly Downloads

187

Version

1.2.0

License

MIT

Unpacked Size

19.3 kB

Total Files

9

Last publish

Collaborators

  • gongking