
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
@thinkpixellab-public/vue-resize-directive
Advanced tools
Vue.js 2.0 directive to detect element resize
Vue directive to detect HTML resize events based on CSS Element Queries with debouncing and throttling capacity.
![]()
Use this option when you need to receive all the resize events.
The onResize function will be called each time the element resizes with the corresponding HTML element as only argument.
<div v-resize="onResize">
Use throttle when you need to rate-limit resize events frequency.
<div v-resize:throttle="onResize">
<div v-resize:throttle.100="onResize">
Use debounce when you only need to be notified when resize events ends.
<div v-resize:debounce="onResize">
<div v-resize:debounce.50="onResize">
Use this option to receive the resize callback right after the element is mounted on the DOM and visible.
<div v-resize.initial="onResize">
npm install vue-resize-directive --save
// ES6
import resize from 'vue-resize-directive'
//...
export default {
directives: {
resize,
}
//...
// ES5
var resize = require('vue-resize-directive')
<script> IncludeJust include Vueresize.js after ResizeSensor.js from css-element-queries and lodash.js script.
FAQs
Vue.js 2.0 directive to detect element resize
We found that @thinkpixellab-public/vue-resize-directive demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.