
Security News
Open Source Maintainers Feeling the Weight of the EU’s Cyber Resilience Act
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
vue3-resize-directive
Advanced tools
Vue directive to detect HTML resize events based on CSS Element Queries with debouncing and throttling capacity.
Forked from the original Vue 2 variant: https://github.com/David-Desmaisons/Vue.resize
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 vue3-resize-directive --save
// ES6
import resize from 'vue3-resize-directive'
//...
export default {
directives: {
resize,
}
//...
// ES5
var resize = require('vue3-resize-directive')
<script>
IncludeJust include Vueresize.js
after ResizeSensor.js
from css-element-queries and lodash.js
script.
FAQs
Vue.js 3.0 directive to detect element resize
The npm package vue3-resize-directive receives a total of 472 weekly downloads. As such, vue3-resize-directive popularity was classified as not popular.
We found that vue3-resize-directive demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.